1. 程式人生 > >Android Studio使用build.gradle引入github開源庫

Android Studio使用build.gradle引入github開源庫

一般只要在build.gradle中標籤dependencies新增開源庫,如下

dependencies {
   debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1' // or 1.4-beta1
   releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1' // or 1.4-beta1
   testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1' // or 1.4-beta1
}

但是需要注意的是,應用中引用的倉庫,如jcenter和mavenCentral,有的開源庫只在其中有,如果編譯通不過,可以在這兩個倉庫切換試試

mavenCenter和JCenter的區別

http://blog.sina.com.cn/s/blog_72ef7bea0102vvqg.html