解決 Android 項目下載依賴缺失導致的問題
在項目根目錄下的 build.gradle 文件中增加下面的代碼:
buildscript {repositories {...maven {url "https://maven.aliyun.com/repository/jcenter"}maven {url "https://maven.aliyun.com/repository/central"}maven {url "https://jitpack.io"}...}
}allprojects {repositories {...maven {url "https://maven.aliyun.com/repository/jcenter"}maven {url "https://maven.aliyun.com/repository/central"}maven {url "https://jitpack.io"}...}
}
原始資源參見這里:https://developer.aliyun.com/mvn/view