Android Repositories
众所周知啊,Android 的仓库源 google jcenter 国内是超级慢的,换个 aliyun 起飞了
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| mavenCentral() maven { url "[https://jitpack.io](https://jitpack.io)" } maven { url "[http://maven.aliyun.com/nexus/content/groups/public/](http://maven.aliyun.com/nexus/content/groups/public/)" } maven { url '[http://maven.oschina.net/content/groups/public/'](http://maven.oschina.net/content/groups/public/') } maven { url '[https://oss.sonatype.org/content/repositories/snapshots/'](https://oss.sonatype.org/content/repositories/snapshots/') } maven { url "[http://maven.springframework.org/release](http://maven.springframework.org/release)" } maven { url "[http://maven.restlet.org](http://maven.restlet.org)" } maven { url "[http://mirrors.ibiblio.org/maven2](http://mirrors.ibiblio.org/maven2)" } maven { url "[http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/](http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/)" } maven { url '[https://maven.fabric.io/public'](https://maven.fabric.io/public') } jcenter() google() jcenter { url "[http://jcenter.bintray.com/](http://jcenter.bintray.com/)" }
|