配置自定義的Gradle wrapper distributionUrl
當(dāng)使用AndroidStudio第一次創(chuàng)建項(xiàng)目的時(shí)候蹋半,或者改變wrapper版本的時(shí)候既们,需要從Gradle服務(wù)器去下載相應(yīng)版本的的執(zhí)行文件。但是由于網(wǎng)絡(luò)的問題,導(dǎo)致長(zhǎng)時(shí)間卡頓,無法直接進(jìn)入的尷尬情形。
解決此種的方式不外呼2種串远,本地文件和網(wǎng)絡(luò)文件(良好的網(wǎng)絡(luò)為前提)
-
本地文件
事先將gradle文件下載宏多,可以是gradle-x.x-all.zip, 也可以是gradle-x.x-bin.zip, 將下載好的文件拷貝到gradle/wrapper/目錄下,
gradle-wrapper.properties
distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=gradle-4.2-bin.zip
-
使用網(wǎng)絡(luò)文件方式添加。(即設(shè)置Gradle distribution鏡像)
gradle-wrapper.properties
distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=http\://localhost:8081/nexus/content/repositories/gradle-distribution/gradle-4.2-bin.zip
<font color=#f00>注:冒號(hào)前面需要添加轉(zhuǎn)義符'' </font>
如何在Sonartype Nexus上配置Gradle distribution鏡像
-
Add --> Proxy repsitorynew
-
設(shè)置 gradle-wrapper.properties
distributionUrl=http\://localhost:8081/nexus/content/repositories/gradle-distribution/gradle-4.2-bin.zip
-
使用命令行執(zhí)行
gradlew --gradle-distribution-url "http\://localhost:8081/nexus/content/repositories/gradle-distribution/gradle-4.2-bin.zip" clean build