我尝试使用 react-native run-android
运行本机响应,但出现上述错误。我在让我的独立博览会在android模拟器上运行时遇到问题,并且不断收到此错误 Error running app. Have you installed the app already using Android Studio? Since you are detached you must build manually. Error: Activity not started, unable to resolve Intent { act=android.intent.action.VIEW dat=....
经过数小时的徒劳努力,我尝试运行 react-native run-android
,但我不断收到上述错误(标题)。在线解决方案spawnSync ./gradlew EACCES error when running react native project on emulator udara显示其权限问题,可以通过以下方式解决
chmod 755 android/gradlew
由于我正在使用Windows系统
ICACLS "android/gradlew" /grant:r "Administrator:(F)" /C
但我仍然遇到相同的错误。 icacls并不是很好,所以我可能是错的。非常感谢您的协助。
我的模拟器运行良好,因为我做了 adb devices
检查及其检查。我什至在窗口上已经打开了模拟器
答案 0 :(得分:21)
根项目中的open终端react-native并输入:
cd android && chmod -R 777 ./gradlew && cd ..