错误日志:
* What went wrong:
A problem occurred evaluating project ':react-native-orientation'.
> Could not find method compile() for arguments [com.facebook.react:react-native:+] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
解决方法:
报上述问题,是因为生成的本地的node_modules
文件中的react-native-orientation
文件中的->android
中build.gradle
文件中的com.facebook.react:react-native:+
依赖版本太低的问题。
把compile "com.facebook.react:react-native:+"
换成 implementation "com.facebook.react:react-native:+"
即可。