我已经一步一步地遵循了官方的入门指南。我从一个干净的 linux 安装开始,并按照“使用本机代码构建项目”选项卡安装了所需的一切。我还阅读了故障排除部分。我已经使用终端创建了项目。
这是我运行时的错误react-native run-android
:
Starting JS server...
Building and installing the app on the device (cd android && ./gradlew installDebug)...
ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation.
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/android-setup.html
它没有找到 JAVA_HOME,因为最新版本的 Android Studio 不需要在系统中安装 Java。而是使用内部 JRE。
重复免责声明:我已经阅读了这个问题。这不是我想要的。我知道如何设置 Java 主页。我只想运行 react 项目,而不必安装单独的 Java。
问题:
- 如何在 Android Studio 文件夹中找到内部 Java 以便我可以将 JAVA_HOME 指向它?
- 如果不可能,我可以
android
使用 Android Studio打开并运行文件夹内的项目吗?修改父文件夹中的 React JavaScript 代码后,如何刷新此项目?