1.jcenter用來作什麼?
JCenter is the place to find and share popular Apache Maven packages for use by Maven, Gradle, Ivy, SBT, etc.
jcenter倉庫網頁位址:https://bintray.com/bintray/jcenter
jcenter倉庫源碼位址:http://jcenter.bintray.com
可以在"網頁位址"中查找到某個庫需要的maven/Ivy/gradle依賴形式.
maven倉庫網頁位址:http://mvnrepository.com/ (maven上能找到的庫,在jcenter上都能找到)
maven中央倉庫源碼位址:http://repo1.maven.org/maven2/
2.android studio 使用國内jcenter和maven鏡像位址
由于國内GFW的原因,經常導緻Android studio 莫名其妙的編譯不了,多數原因是由于不能下載下傳依賴庫
Gradle支援三種不同的倉庫,分别是:Maven和Ivy以及檔案夾。依賴包會在你執行build建構的時候從這些遠端倉庫下載下傳,當然Gradle會為你在本地保留緩存,是以一個特定版本的依賴包隻需要下載下傳一次。
repositories {
mavenCentral()
jcenter() //預設的jcenter中央倉庫http://jcenter.bintray.com
mavenLocal()
}
為了避免由于被牆,我們使用國内mave庫,這裡使用的是開源中國的maven庫開源中國maven網頁、連結鏡像位址:http://maven.oschina.net/home.html
我們在studio中隻需替換項目根目錄下build.gradle中的jCenter或者maven就好
allprojects {
repositories {
maven{ url 'http://maven.oschina.net/content/groups/public/'} //以下的庫具有優先級
mavenCentral()
jcenter() //預設的jcenter中央倉庫http://jcenter.bintray.com
mavenLocal()
}
}
3.gradle依賴
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0' //表示android使用的gradle的的插件,需要與studio的版本比對
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs') //表示依賴的包 :libs,目錄下所有的.jar包
compile 'com.android.support:recyclerview-v7:23.3.0' //這是一個本地sdk中的包
compile 'com.google.android.gms:play-services-appindexing:8.4.0' //這是一個本地sdk中的包
compile 'com.github.lecho:hellocharts-library:1.5.8@aar' //這是一個jcenter中的包,可以在jcenter或mavenCentral中查到
compile 'org.greenrobot:eventbus:3.0.0' //這是一個jcenter中的包,可以在jcenter或mavenCentral中查到
Error:Error converting bytecode to dex:
Cause: Dex cannot parse version 52 byte code.
This is caused by library dependencies that have been compiled using Java 8 or above.
If you are using the 'java' gradle plugin in a library submodule add
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
to that submodule's build.gradle file.
本文轉自 a_liujin 51CTO部落格,原文連結:http://blog.51cto.com/a1liujin/1794695,如需轉載請自行聯系原作者