react-native的枪林弹雨
常见问题系列
Couldn’t get the native call queue:bridge configuration isn’t available.This shouldn’t be possible.Congratulations.
我的解决方法:删除工作目录下的node_modules文件夹,之后备份你的js文件,然后在行命令中重新进行:cd ..react-native initUnable to upload some APKs
运行react-native run-android可能出现如下错误:
Execution 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中的com.android.tools.build:gradle:1.3.1
改成
com.android.tools.build:gradle:1.2.3然后再跑
react-native run-android