關於Gradle編譯時下載依賴失敗解決方法
2018年9月18日 AndroidStudio終於更新到了3.2穩定版,但是更新之後新建專案總是會失敗,設定代理,重新清理各種操作基本上都嘗試遍了,也沒起到作用,花了六個小時,終於找到了解決方案,在project的build.gradle檔案中新增如下內容,瞭解AndroidStudio的看官應該一眼就明白了:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
def REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public/'
all { ArtifactRepository repo ->
if(repo instanceof MavenArtifactRepository){
def url = repo.url.toString()
if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com/')) {
remove repo
}
}
}
maven {
url REPOSITORY_URL
}
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
def REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public/'
all { ArtifactRepository repo ->
if(repo instanceof MavenArtifactRepository){
def url = repo.url.toString()
if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com/')) {
remove repo
}
}
}
maven {
url REPOSITORY_URL
}
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
最後,特別鳴謝:https://blog.csdn.net/u013360850/article/details/60595210
阿里的倉庫地址:http://maven.aliyun.com/nexus/content/groups/public/
OSChina的倉庫地址:http://maven.oschina.net/content/groups/public/
相關文章
- pyhanlp下載失敗解決方法HanLP
- 交叉編譯庫依賴問題的解決方法編譯
- 編譯OpenVPN及解決相關依賴問題編譯
- 關於npm install失敗的解決方法NPM
- 依賴衝突時的解決方法
- 解決Android studio中gradle依賴下載太慢的問題AndroidGradle
- 解決npm 安裝部分依賴失敗問題總結NPM
- sbt下載相關依賴過慢的解決辦法
- Drone構建失敗,一次drone依賴下載超時導致構建失敗的爬坑記錄
- gradle包下載失敗Gradle
- ofbiz16中gradle構建依賴jcenter下載太慢的解決方案Gradle
- 【譯】Gradle 的依賴關係處理不當,可能導致你編譯異常Gradle編譯
- 通過Gradle來下載依賴的jar包GradleJAR
- 關於 Gradle 依賴庫的幾個東西Gradle
- 問題解決--npm install 安裝依賴一直失敗NPM
- 方法'ExecuteTempImexSpec'作用於對像'_WizHook'時失敗 的解決Hook
- depmod解決模組依賴關係
- go get下載包失敗的解決方案Go
- 對USB驅動下載失敗的解決
- 對於npm install失敗的解決方法:NPM
- [譯]使用Go Cloud的Wire進行編譯時依賴注入GoCloud編譯依賴注入
- 解決rpm包依賴關係
- maven依賴衝突以及解決方法Maven
- python 編譯失敗Python編譯
- mac os x之解決npm安裝包失敗,或者nodejs工程缺少依賴MacNPMNodeJS
- 清除gradle依賴jarGradleJAR
- 關於 OkHttp 依賴衝突問題的解決過程HTTP
- 關於依賴注入(typescript)依賴注入TypeScript
- AndroidKiller反編譯失敗的處理方法Android編譯
- 一些關於網賭被黑提款失敗的解決方法與技巧,
- Rustyinject是Rust的編譯時依賴注入DI庫Rust編譯依賴注入
- dbsnmp啟動失敗解決方法
- SVN clean失敗解決方法【轉】
- npm install失敗解決方法NPM
- 安裝XAMPP時啟動Apache失敗解決方法 xamppApache
- Electron使用electron-builder打包時下載electron失敗或慢的解決方案UI
- LINUX下編譯原始碼時所需提前安裝的常用依賴包列表Linux編譯原始碼
- laravel-mix編譯失敗Laravel編譯