私はMacOSで作業しており、ちょうどreact-native
で始まっています。ネイティブエラーに反応する:「 '9.0.1'からJavaバージョンを特定できませんでした」
最初に起動する手順の1つは、react-native run-android
またはreact-native run-ios
です。しかし、私はこのエラーを取得しています:
$ react-native run-android
Scanning folders for symlinks in /Users/ric/myprojs/albums/node_modules (6ms)
Starting JS server...
Building and installing the app on the device (cd android && ./gradlew installDebug)...
FAILURE: Build failed with an exception.
* What went wrong:
Could not determine java version from '9.0.1'.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
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 --version
を実行したときに、私が得るものです:
$ java --version
java 9.0.1
Java(TM) SE Runtime Environment (build 9.0.1+11)
Java HotSpot(TM) 64-Bit Server VM (build 9.0.1+11, mixed mode)
mbp:albums ric$ java --version
java 9.0.1
Java(TM) SE Runtime Environment (build 9.0.1+11)
Java HotSpot(TM) 64-Bit Server VM (build 9.0.1+11, mixed mode)
EDITED: をこれは私がjavac --version
を実行したときに、私が得るものです:
$ javac --version
javac 9.0.1
これを修正する方法はありますか?ファイルで
ターミナルで 'javac -version'も実行できますか – bennygenel
私はそのコマンドの結果で自分の質問を編集しました。ありがとう! – Xar
私は[この問題](https://github.com/facebook/react-native/issues/11755)を見つけましたが、少し古くなっていますが、Javaバージョンまたはgradleに関連している可能性があります。 – bennygenel