赞
踩
使用配置:
- buildscript {
- repositories {
- jcenter()
- }
- }
-
- allprojects {
- repositories {
- jcenter()
- }
- }
搜索仓库文件:http://mvnrepository.com/
仓库文件夹:http://central.maven.org/maven2/
使用配置:
- buildscript {
- repositories {
- mavenCentral()
- }
- }
-
- allprojects {
- repositories {
- mavenCentral()
- }
- }
网页地址:https://dl.google.com/dl/android/maven2/
查看下载包:https://dl.google.com/dl/android/maven2/index.html
使用配置:
- buildscript {
- repositories {
- google()
- }
- }
-
- allprojects {
- repositories {
- google()
- }
- }
集成了jcenter和google等
地址:http://maven.aliyun.com/nexus/content/repositories/jcenter/
使用配置:
- buildscript {
- repositories {
- maven {
- url 'http://maven.aliyun.com/nexus/content/repositories/jcenter/'
- }
- }
- }
-
- allprojects {
- repositories {
- maven {
- url 'http://maven.aliyun.com/nexus/content/repositories/jcenter/'
- }
- }
- }
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。