(ReactNative):任务':app:generatePackageList'执行失败
我正在生成我使用 React Native 开发的项目的 apk。但是当我运行命令时./gradlew assembleRelease出现以下错误:
> Configure project :react-native-audio
WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed in version 5.0 of the Android Gradle plugin.
For more information, see http://d.android.com/r/tools/update-dependency-configurations.html.
> Task :app:generatePackageList FAILED
FAILURE: Build failed with an exception.
* Where:
Script 'C:UsersromerProjetoAPGravadortesteGravador_de_audionode_modules@react-native-communitycli-platform-androidnative_modules.gradle' line: 131
* What went wrong:
Execution failed for task ':app:generatePackageList'.
> argument type mismatch
* 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 8.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/7.0/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 24s
1 actionable task: 1 executed
PS C:usersromerProjetoAPGravadortesteGravador_de_audioandroid>
如何解决这个问题呢?
回答
我刚刚遇到了同样的问题,并且能够追踪它为什么在我的系统上发生。使用该--stacktrace标志有助于弄清楚发生了什么,最终指向react-native-community/cli包。
在扫描react-native-community/clirepo 中的问题和 PR 后,我发现了这个 PR https://github.com/react-native-community/cli/pull/1396,它增加了对 Gradle 7 的支持。
我的系统上有 Gradle 7 并降级到 Gradle 6,运行gradle wrapper,然后./gradlew clean让我继续前进。
希望这能解决您的问题,或者至少让您了解如何在您的系统上追踪它!
-
Gradle doesnt support Java 16 except version 7.0 for Gradle.
And react-native-cli doesnt support Gradle 7.0.
What a incredible day :/
THE END
二维码