今天很多RN的安卓項目同時跑不起來了,是因為https://jcenter.bintray.com/ 網(wǎng)站掛了,產(chǎn)生的問題.
具體會報錯: Could not resolve com.android.tool.build:gradle:2.3.+
目前解決方法是替換為阿里云的鏡像.
將報錯用到的安卓組件在build.gradle文件里面的jcenter() 都替換掉
具體是這樣:
repositories {
google()
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
// jcenter()
}
allprojects {
repositories {
mavenLocal()
google()
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
//jcenter()
}
}