#前提・実現したいこと
AndroidEmulator上でのアプリの起動
#エラーの概要
Android環境でアプリをビルドするとエラーが発生しました。
以下、$yarn android
をterminal上で打った時に吐き出されたエラー文です。
> Task :app:generatePackageList FAILED Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
また、$gradle --warning-mode all
を試し、出力された結果は、各node moduleにお
Subproject ‘:[node module name,path] which is outside of the project root. This behaviour has been deprecated and is scheduled to be removed in Gradle 8.0. Consult the upgrading guide for further information: https://docs.gradle.org/7.2/userguide/upgrading_version_7.html#deprecated_flat_project_structure
gradleのバージョンのエラーを疑っているのですが、gradleのバージョンは最新の状態(7.2)で、8.0はリリースされており、どうすればいいのか色々試しております。
###試したこと
キャッシュを消す
2. $cd android
3. $./gradlew --stop
(in MacOS)
4. $./gradlew cleanBuildCache
(in MacOS)
あなたの回答
tips
プレビュー