运行“ react-native run-android”时出现下一个错误:
Error log.:
> Task :app:compileDebugJavaWithJavac FAILED
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.1.1/userguide/command_line_interface.html#sec:command_line_warnings
为什么会发生这种情况?
答案 0 :(得分:0)
您可能已经更新了gradle插件,该插件与以前版本生成的gradle文件不兼容,很可能是导致问题的原因。
我所知道的唯一解决方案是创建一个新的React Native项目并将您的源代码移至该项目。如果您正在使用多个本机库,那么再次链接它们会很麻烦,但是您的项目将使用新的gradle功能构建,并且错误将消失。
希望这会有所帮助!