我正在为移动应用程序创建React Native应用程序。我在构建React Native应用程序方面是全新的。我正在使用ubuntu创建应用程序,并在下面的链接中创建了应用程序。 https://facebook.github.io/react-native/docs/getting-started。谁能解决这个问题?
在下面的阶段我出现错误:
cd AwesomeProject
npx react-native run-android
我的命令行错误:
All-Series:~/Projects_App/AwesomeProject$ npx react-native run-android
info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag.
Jetifier found 864 file(s) to forward-jetify. Using 4 workers...
info Starting JS server...
/bin/sh: 1: adb: not found
info Launching emulator...
error Failed to launch emulator. Reason: No emulators found as an output of `emulator -list-avds`.
warn Please launch an emulator manually or connect a device. Otherwise app may fail to launch.
info Installing the app...
> Task :app:compileDebugJavaWithJavac FAILED
Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/5.5/userguide/command_line_interface.html#sec:command_line_warnings
13 actionable tasks: 4 executed, 9 up-to-date
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> Could not find tools.jar. Please check that /usr/lib/jvm/java-8-openjdk-amd64 contains a valid JDK installation.
* 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 5s
error Failed to install the app. Make sure you have the Android development environment set up: https://facebook.github.io/react-native/docs/getting-started.html#android-development-environment. Run CLI with --verbose flag for more details.
Error: Command failed: ./gradlew app:installDebug -PreactNativeDevServerPort=8081
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> Could not find tools.jar. Please check that /usr/lib/jvm/java-8-openjdk-amd64 contains a valid JDK installation.
* 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 5s
at checkExecSyncError (child_process.js:621:11)
at execFileSync (child_process.js:639:15)
at runOnAllDevices (/home/rupeevest/Projects_App/AwesomeProject/node_modules/@react-native-community/cli-platform-android/build/commands/runAndroid/runOnAllDevices.js:94:39)
at processTicksAndRejections (internal/process/task_queues.js:93:5)
答案 0 :(得分:3)
转到您的react-native项目,然后转到android目录并使用该名称创建文件
local.properties
如果您使用的是Windows,请打开文件并粘贴Android SDK路径,如下所示:
sdk.dir = C:\\ Users \\ UserName \\ AppData \\ Local \\ Android \\ sdk
我发现答案正确here
答案 1 :(得分:1)
运行遇到类似问题时使用的快速修复程序
react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
然后确保您的模拟器已打开并再次运行react-native run-android
答案 2 :(得分:1)
帮助我的是在Android Studio中打开该项目,然后从旁边的模拟器下拉列表中选择模拟器,然后按播放按钮。
如果由于某种原因模拟器抛出错误,请尝试使用另一部手机安装另一部。希望这对某人有帮助!