私はリアクションネイティブでApkを取得しようとしますが、それは私に何も与えません。 Apkファイルにあるリリースファイルが空で、Gradlewバンドルのリリースが完了した後、
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.4.1/userguide/command_line_interface.html#sec:command_line_warnings
この問題を解決する方法が見つかりませんでした
react-native run-Android
info Starting JS server...
info Building and installing the app on the device (cd Android && ./gradlew app:installDebug)...
Starting a Gradle Daemon, 2 incompatible and 1 stopped Daemons could not be reused, use --status for details
> Task :app:transformClassesWithDexBuilderForDebug FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:transformClassesWithDexBuilderForDebug'.
> Java.nio.file.AccessDeniedException: /home/kourosh/Projects/FitnessApp/Android/app/build/intermediates/transforms/dexBuilder/debug/45/androidx/versionedparcelable/R.dex
* 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
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.4.1/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 1m 15s
19 actionable tasks: 1 executed, 18 up-to-date
error 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
error Command failed: ./gradlew app:installDebug. Run CLI with --verbose flag for more details.
Javaバージョン "12.0.1" 2019-04-16 node -v v10.16.0 npm -v 6.9.0
これは、Reactネイティブプロジェクトで発生しました。これは、Windows(10 64ビット)で修正するための段階的な手順です。
1)Android Studio( https://windowsloop.com/launch-avd-manager-without-Android-studio/ )なしでavdを実行します
2)別のコンソールでプロジェクトを実行しますgradle wrapper
(Gradle 5.4.1をインストールしておく必要があります( https://gradle.org/install/ ))
3)次にcd Android
に移動し、ここでgradlew clean
を実行します
4)ルートcd..
に移動してreact-native start
を実行します
5)プロジェクトで別のコンソールを実行しますreact-native run-Android
問題を解決するには、このファイル(gradle-wrapper.properties)を見つける必要があります。このファイルは、プロジェクトフォルダーのdパス(Android/gradle/wrapper)にあります...ファイルを開いて、この行distributionUrl =-を変更してください https://services.gradle.org/distributions/gradle-5.5-all.Zip to this distributionUrl = https://services.gradle.org/distributions/gradle-6.0.1- all.Zip
2020年に同じ問題がある場合、Powershellによるこの提案が役に立ちました。
。\ emulator.exe -avd "MyAvd"
SDKエミュレーターが配置されているディレクトリ(C:\ Users\AppData\Local\Android\Sdk\emulator)で上記のコマンドを実行すると、以下のように手順が表示される場合があります。
エミュレータが古くなっています。Android Studioを起動して更新してください:
このリンクも役に立ちます。 リンク
gradle wrapper
に移動します。gradle clean
を実行します。react-native start
を実行します。react-native run-Android
プロジェクトが実行されます!