ReactNativeプロジェクトを0.59から0.61.2にアップグレードしました。iOSは正常にビルドされていますが、Android i'm @ react-native-community/cli-platform-Androidモジュールで問題に直面しています。
私のsettings.gradleファイル
apply from: file("../node_modules/@react-native-community/cli-platform-Android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
私のbuild.gradleファイル
apply from: file("../../node_modules/@react-native-community/cli-platform-Android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
アプリのビルド中に次のエラーが表示されます。
> Task :app:generatePackageList FAILED
FAILURE: Build failed with an exception.
* Where:
Script '/Users/yashwanth_c/Documents/projects/MobileApp/node_modules/@react-native-community/cli-platform-Android
/native_modules.gradle' line: 130
* What went wrong:
Execution failed for task ':app:generatePackageList'.
> ReactNativeModules$_generatePackagesFile_closure3
* 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.5/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 5m 21s
4 actionable tasks: 4 executed
いつものように、キャッシュをクリーンアップしてnode_moduleフォルダーを削除しましたが、何度も試しましたが、うまくいきませんでした。また、1週間以上グーグル検索を行ったが、まだ修正を見つけることができなかったため、アドバイスをいただければ幸いです。
私は同じ問題を抱えていたので、以下のコマンドを試しました。それは私のために働いた。つまり、Android cliパッケージを手動でインストールします。
npm i @react-native-community/cli-platform-Android
誰かが別の解決策を知っているなら、親切にここで共有してください。