react-native 的枪林弹雨
常见问题系列
Couldn’t get the native call queue:bridge configuration isn’t available.This shouldn’t be possible.Congratulations.
我的解决方法:删除工作目录下的 node_modules 文件夹,之后备份你的 js 文件,然后在行命令中重新进行:1
2cd ..
react-native initUnable to upload some APKs
运行1
react-native run-android
可能出现如下错误:
1
2Execution failed for task ':app:installDebug'.
com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: Unable to upload some APKs此时需要确认:
- 如果你是在真机上运行,你的设备要确保连接正确(打开 USB 调试),可以用 adb services 来查看是否有该设备
- 如果你是用模拟器,保证它已经启动了(也可以用 adb services 来查看)
- 可能需要更改你的工作目录/android/build.gradle 中的改成
1
com.android.tools.build:gradle:1.3.1
然后再跑1
com.android.tools.build:gradle:1.2.3
参考:Unable to upload some APKs1
react-native run-android
3.