今天从git上 checkout 一个项目
结果 react-native run-android的时候报了一个错误
"* What went wrong:
A problem occurred configuring project ': app'.
> Could not resolve all dependencies for configuration ':app:_debugApk'.
> A problem occurred configuring project ':react-native-device-info'.
> Could not find common.jar (android.arch.core:common:1.0.0).
Searched in the following locations:
https://jcenter.bintray.com/android/arch/core/common/1.0.0/common-1.0.0.jar
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output."
这个问题之前google在 jcenter () 之前添加 maven { url "https://maven.google.com"},如下图
maven { url "https://maven.google.com" } //react-native-video
jcenter()
并没有解决
最后将整个配置写成
allprojects {
repositories {
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
mavenLocal()
// google()
jcenter()
maven { url "$rootDir/../node_modules/react-native/android" }
}
}
解决了这个问题
有没有小伙伴知道啥原因,分享一下