怎么从MavenCentre和JCenter上自动获取你要的依赖

前端之家收集整理的这篇文章主要介绍了怎么从MavenCentre和JCenter上自动获取你要的依赖前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.去网站搜索你需要依赖的gradle引用地址

JCenter

https://bintray.com/bintray/jcenter

MavenCenter

http://mvnrepository.com/

2.更改项目build.gradle JCenter/mavenCentral

repositories {
    jcenter()
}
3.在你需要使用的app中添加该地址
dependencies {
    compile fileTree(dir: 'libs',include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.0'
    compile 'com.facebook.fresco:fresco:0.9.0'
}
4.build 原文链接:https://www.f2er.com/javaschema/284130.html

猜你在找的设计模式相关文章