首页 > 解决方案 > React Native 运行没有错误不会在设备上启动?

问题描述

在 Mac OSX 上运行教程,我安装了 android studio 并构建了一个 Nexus 5 模拟器(API 27,Android 8.1.0)。运行react-native run-android命令时,如果模拟器通过android studio运行,则没有错误,但应用程序没有开始在模拟器上运行。

(注意,上周我在维修分配给我的笔记本电脑时从工作电脑借来的设备上进行了这项工作,相同的操作系统,都是 macbook pro 15;该应用程序将在模拟器上自动启动)

如果我在没有打开模拟器的情况下运行命令,我会得到以下输出:

JS server not recognized, continuing with build...
Building and installing the app on the device (cd android && ./gradlew installDebug)...

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:installDebug'.
> com.android.builder.testing.api.DeviceException: No connected devices!

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1s
27 actionable tasks: 1 executed, 26 up-to-date
Could not install the app on the device, read the error above for details.
Make sure you have an Android emulator running or a device connected and have
set up your Android development environment:
https://facebook.github.io/react-native/docs/getting-started.html

如果我在模拟器上运行命令,我会得到以下输出:

JS server not recognized, continuing with build...
Building and installing the app on the device (cd android && ./gradlew installDebug)...

> Task :app:installDebug 
Installing APK 'app-debug.apk' on 'Nexus_5X_API_27(AVD) - 8.1.0' for app:debug
Installed on 1 device.


BUILD SUCCESSFUL in 2s
27 actionable tasks: 1 executed, 26 up-to-date
/bin/sh: adb: command not found
Starting the app (adb shell am start -n  com.reactcalculator/com.reactcalculator.MainActivity...

模拟器永远不会改变。


解决方案

该应用程序在设备上;它只是没有立即开始。我可以通过彻底检查应用程序列表找到它。似乎在某些环境中(如我上面描述的借用者),应用程序可以自行启动,而在其他环境中,则需要手动启动。

标签: androidandroid-studioreact-nativeandroid-emulator

解决方案


该应用程序存在,只是没有自动启动。

该应用程序在设备上;它只是没有立即开始。我可以通过彻底检查应用程序列表找到它。似乎在某些环境中(如我上面描述的借用者),应用程序可以自行启动,而在其他环境中,则需要手动启动。


推荐阅读