之前感覺Studio中直接使用 compile ‘xxxxxxx’ 感覺挺方(裝)便(逼)的挖滤。之前感覺Studio中直接使用 compile ‘xxxxxxx’ 感覺挺方(裝)便(逼)的策州。
注冊
Bintray官網(wǎng)首頁默認注冊是組織, 個人的正確注冊地址是:https://bintray.com/signup/oss 這里注意一點不能使用國內(nèi)的郵箱注冊该溯。也可以使用Google賬號,Github賬號 關(guān)聯(lián)登錄。
獲取Key
創(chuàng)建個人Maven倉庫
注意:這里創(chuàng)建的maven倉庫名字如果是 maven 那么可以使用以下兩種配置方式的任意一種 蝗敢,如果自定義倉庫名字非 maven 需要通過第二種配置進行上傳翅睛,否則存在 404声搁。
上傳之前的配置
配置方式一(倉庫名必須為maven):
項目根目錄build.gradle中完整配置代碼:
buildscript { ? ?
????????repositories { ? ? ?
? ? ? ? ????????jcenter() ?
????????} ?
? ? ? ? dependencies { ? ? ? ?
????????????????classpath 'com.android.tools.build:gradle:2.3.1' ? ? ? ?
????????????????classpath 'com.novoda:bintray-release:0.3.4' ? ? ?
? ? ? ? ????????// NOTE: Do not place your application dependencies here; they belong ? ? ? ?
? ? ? ?????????// in the individual module build.gradle files ?
? ? ? ? }
}
allprojects { ? ?
????????repositories { ? ? ?
????????????????jcenter() ? ?
????????} ? ?
????????// 解決 Execution failed for task':[YourLibraryName]:mavenAndroidJavadocs'. ? ????????tasks.withType(Javadoc) { ? ? ? ?
????????????????options.addStringOption('Xdoclint:none', '-quiet') ? ? ? ????????????????options.addStringOption('encoding', 'UTF-8') ? ?
????????}
}
在app和 library 的 build.gradle 文件中加入以下代碼解決?Execution failed for task ‘:core:lint’?:
android{ ? ?... ? ?... ?
????????lintOptions { ? ? ? ?
????????????????checkReleaseBuilds false ? ? ? ?
????????????????abortOnError false ? ?
????????}
}
在library的 build.gradle 加入一些配置 :
apply plugin: 'com.novoda.bintray-release' ?
// 新增...android{ ? ?... ? ?... ? ?lintOptions... 省略}
publish { ? ?
????????userOrg = 'xxx' ?//bintray.com注冊的用戶名 ? ?
????????groupId = 'com.lfq ?'//jcenter上的路徑 ? ?
????????artifactId = 'customrepo' ?//上傳到 Jcenter 的項目名稱 ? ?
????????publishVersion = '1.0.1' ? //版本號 ? ?
????????desc = ''" ?//選填 ? ?
????????website = 'https://github.com/xxx'//這里是必填黑竞;可以填寫你 Github 上的當前項目地址。注意 格式必須是 github地址(地址可以不存在)酥艳。
}
此配置的最終生成結(jié)果格式為:
compile 'com.lfq:customrepo:1.0.1'
這里調(diào)整一下摊溶,這種配置方式生成的依賴的組成格式:
依賴組成格式:'groupId : artifactId:版本號' ??依賴組成格式:'groupId : artifactId:版本號' ??依賴組成格式:'groupId : artifactId:版本號'
這里和下面的配置方式生成的依賴還是有點區(qū)別的。
配置方式二(自定義倉庫名):
在Project的 build.gradle 中添加 Maven 和 Jfrog Bintray 的依賴
buildscript { ? ?
????????repositories { ? ? ? ?
????????????????jcenter() ? ?
????????} ? ?
? ? ? ? dependencies { ? ? ? ?
? ? ? ? ????????classpath 'com.android.tools.build:gradle:2.3.0' ? ? ? ?
????????????????// NOTE: Do not place your application dependencies here; they belong ? ? ? ?
????????????????// in the individual module build.gradle files ? ? ? ?
????????????????// 添加下面兩行 ? ? ? ?
????????????????classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' ? ? ? ?
????????????????classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' ? ?
????????}
}
allprojects { ? ?
????????repositories { ? ? ? ?
????????????????jcenter() ? ?
????????}
}
task clean(type: Delete) { ? ?
????????delete rootProject.buildDir
}
版本號這里目前是最新的充石,后續(xù)如果有更新莫换,可以去查看Maven和?Jfrog Bintray?的最新版本。
在module的 builde.gradle 中進行配置
apply plugin: 'com.android.library'
//添加這兩行
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
android { ? ?
????????compileSdkVersion 24 ? ?
????????buildToolsVersion '25.0.0' ? ?
????????defaultConfig { ? ? ? ?
????????????????minSdkVersion 14 ? ? ? ?
????????????????targetSdkVersion 22 ? ? ? ?
????????????????version 1 ? ? ? ?
????????????????versionName "1.0" ? ?
????????} ? ?
????????buildTypes { ? ? ? ?
????????????????release { ? ? ? ? ? ?
????????????????????????minifyEnabled false ? ? ? ? ? ?
????????????????????????proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' ? ? ? ???????????} ? ?
????????} ? ?
? ? ? ? //添加配置 ? ?
????????lintOptions {
????????????????//checkReleaseBuilds false ? ? ? ?
????????????????// Or, if you prefer, you `can continue to check for errors in release builds, ? ? ? ?
????????????????// but continue the build even when errors are found: ? ? ? ?
????????????????abortOnError false ? ?
????????}
}
dependencies { ? ?
????????compile fileTree(include: ['*.jar'], dir: 'libs') ? ?
????????compile 'com.android.support:appcompat-v7:24.2.1' ? ?
????????provided 'com.github.bumptech.glide:glide:3.7.0'
}
//項目主頁
def siteUrl = 'https://github.com/lvfaqiang/Multi-Image-Selector'
//項目的git地址
def gitUrl = 'git@github.com:lvfaqiang/Multi-Image-Selector.git'
def libName = "MultiImageSelector";
//上傳到 Bintray 的 package 名稱骤铃。
group = "me.lfq";
version = "1.0.1"
// 這兩個參數(shù)配置是為了最終生成 compile 'me.lfq:依賴庫的名稱:1.0.0' ?group ?version 是關(guān)鍵字拉岁,自動識別的。只需配置好就行惰爬。
install { ? ?
????????repositories.mavenInstaller { ? ? ? ?
????????????????// 生成pom.xml和參數(shù) ? ? ? ?
????????????????pom { ? ? ? ? ? ?
? ? ? ? ? ? ? ? ????????project { ? ? ? ? ? ? ? ?
????????????????????????????????packaging 'aar' ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? // 項目描述喊暖,復(fù)制我的話,這里需要修改撕瞧。 ? ? ? ? ? ? ? ?
????????????????????????????????name 'MultiImageSelector' ?// 可選陵叽,項目名稱。 ? ? ? ? ? ? ? ?
????????????????????????????????description '' ?// 可選丛版,項目描述巩掺。 ? ? ? ? ? ? ? ?
????????????????????????????????url siteUrl ? // 項目主頁,這里是引用上面定義好页畦。 ? ? ? ? ? ? ? ?
????????????????????????????????// 軟件開源協(xié)議胖替,現(xiàn)在一般都是Apache License2.0吧,復(fù)制我的豫缨,這里不需要修改独令。 ? ? ? ? ? ? ? ?
????????????????????????????????licenses { ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????license { ? ? ? ? ? ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ????????name 'The Apache Software License, Version 2.0' ? ? ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????????????url 'http://www.apache.org/licenses/LICENSE-2.0.txt' ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????} ? ? ? ? ? ? ? ?
????????????????????????????????} ? ? ? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //填寫開發(fā)者基本信息,復(fù)制我的好芭,這里需要修改燃箭。 ? ? ? ? ? ? ? ?
????????????????????????????????developers { ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????developer { ? ? ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????????????id 'lvfaqiang' ? // 開發(fā)者的id。 ? ? ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????????????name 'lvfaqiang' ? // 開發(fā)者名字舍败。 ? ? ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????????????email 'lvfaqiang@gmail.com' ? // 開發(fā)者郵箱遍膜。 ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????} ? ? ? ? ? ? ? ?
????????????????????????????????} ? ? ? ? ? ? ? ?
????????????????????????????????// SCM,復(fù)制我的瓤湘,這里不需要修改瓢颅。 ? ? ? ? ? ? ? ?
????????????????????????????????scm { ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????connection gitUrl ? ?// Git倉庫地址。 ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????developerConnection gitUrl ? ?// Git倉庫地址弛说。 ? ? ? ? ? ? ? ? ? ?
????????????????????????????????????????url siteUrl ? // 項目主頁挽懦。 ? ? ? ? ? ? ? ?
????????????????????????????????} ? ? ? ? ? ?
????????????????????????} ? ? ? ?
? ? ? ? ? ? ? ?} ? ?
????????}
}
//上傳到JCenterProperties
properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
bintray { ? ?
????????user = properties.getProperty("bintray.username") ? ?
????????//讀取 local.properties 文件里面的 bintray.user 登錄用戶名。 ? ?
????????key = properties.getProperty("bintray.apikey") ?
????????//讀取 local.properties 文件里面的 bintray.apikey ? ?
????????configurations = ['archives'] ? ?
????????pkg { ? ? ? ?
????????????????//這里的repo值必須要和你創(chuàng)建Maven倉庫的時候的名字一樣 ? ? ? ?
????????????????repo = "custom" ? ? ? ?//發(fā)布到JCenter上的項目名字 ? ? ? ?
????????????????name = libName ? ? ? ?
????????????????websiteUrl = siteUrl ? ? ? ?
????????????????vcsUrl = gitUrl ? ? ? ?
????????????????licenses = ["Apache-2.0"] ? ? ? ?
????????????????publish = true ? //是否是公開項目木人。 ? ?
????????}
}
// 生成jar包的task信柿,不需要修改冀偶。
task sourcesJar(type: Jar) { ? ?
????????from android.sourceSets.main.java.srcDirs ? ?classifier = 'sources'
}
// 生成jarDoc的task,不需要修改渔嚷。
task javadoc(type: Javadoc) { ? ?
????????source = android.sourceSets.main.java.srcDirs ? ?
????????classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) ? ?
????????// destinationDir = file("../javadoc/") ?
? ? ? ? failOnError false ?// 忽略注釋語法錯誤进鸠,如果用jdk1.8你的注釋寫的不規(guī)范就編譯不過。
}
? ? ? ? // 生成javaDoc的jar形病,不需要修改客年。
task javadocJar(type: Jar, dependsOn: javadoc) { ? ?
????????classifier = 'javadoc' ? ?
????????from javadoc.destinationDir
}
artifacts { ? ?
????????archives javadocJar ? ?
????????archives sourcesJar
}
以上需要修改的地方也就配置的幾個項目主頁地址,項目描述漠吻,以及開發(fā)者個人信息量瓜。倉庫名這里要對應(yīng)你在Bintray上創(chuàng)建的自定義倉庫名。
在app的 build.gradle 中需要添加的配置
android{ ? ?... ? ?... ? ?lintOptions { ? ? ? ?checkReleaseBuilds false ? ? ? ?// Or, if you prefer, you can continue to check for errors in release builds, ? ? ? ?// but continue the build even when errors are found: ? ? ? ?abortOnError false ? ?}}
在local.properties中添加個人的參數(shù)值:
bintray.username= bintray注冊的用戶名
bintray.apikey= 文章開頭獲取的 apikey
配置基本上也就這些了途乃。
上傳
基本就是以上所描述的這些配置绍傲,接下來我們打開Studio的控制臺 Terminal .
windows環(huán)境下輸入:
gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY -PdryRun=false
Mac OS環(huán)境下輸入:
如果出現(xiàn)拒絕該命令./gradlew: Permission denied,可以先運行 chmod +x gradlew再運行該命令耍共;
./gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY -PdryRun=false
上面命令中BINTRAY_USERNAME是你在 bintray 上注冊的用戶名烫饼。BINTRAY_KEY 是上面注冊的時候所獲取的 key.
替換了用戶名和API key回車執(zhí)行,等到控制臺最終輸出 BUILD SUCCESSFUL 就表明項目上傳成功试读。
發(fā)布到Jcenter
這個時候回到bintray我們的 maven 倉庫中枫弟,進入我們剛上傳成功的 packge 。
點擊左下角紅框區(qū)域鹏往,進入下一頁直接點擊send等待審核,耐心等待審核通過之后骇塘,就可以直接通過 compile 引入項目使用伊履。
在審核通過之前,我們可以通過配置上圖右上角紅框區(qū)域鏈接來使用款违,在根目錄中添加:allprojects { ? ?repositories { ? ? ? ?jcenter() ? ? ? ?maven {url '右上角的鏈接'} ? ?}}
項目中加入依賴:
compile 'com.lfq:module名稱:1.0.1' ? ?// 模擬類型
注意:如果這里依賴不成功唐瀑,可以再后邊加上@arr
compile 'com.lfq:module名稱:1.0.1@arr'
以上兩種配置方式,我都親測過插爹,如果還有什么問題哄辣,還望各位指出。我也好做出調(diào)整赠尾。謝謝力穗!
補充一下兩種上傳配置的區(qū)別:
第一種配置簡單,但是倉庫名必須是maven气嫁, 依賴組成格式:’groupId : artifactId:版本號’ 当窗, 并且 artifactId 也是上傳到倉庫的 package 名稱。
第二種配置寸宵,相對復(fù)雜一點(無非也就是多復(fù)制一些代碼)崖面。倉庫名可自定義元咙,生成依賴組成格式是:’groupId: module名稱:版本號’ 。 這里的 module名稱也就是你本地依賴庫的名稱巫员。上傳倉庫的package名稱是單獨配置的庶香。