AndroidStudio將遠(yuǎn)程倉(cāng)庫(kù)默認(rèn)指定為Jcenter倉(cāng)庫(kù)迅箩,位于Bintray網(wǎng)站嫁审。Bintray網(wǎng)站下面還有其他好幾個(gè)倉(cāng)庫(kù)仆救。本文主要介紹如何將Android項(xiàng)目發(fā)布到Jcenter拯杠。
一 翅萤、注冊(cè)Bintray賬號(hào)
Bintray官網(wǎng):https://bintray.com
也可使用GitHub賬號(hào)登錄
二 其骄、獲取APIKey
上傳項(xiàng)目之前我們需要兩樣?xùn)|西亏镰,一個(gè)就是用戶名,另一個(gè)是APIKey拯爽。APIKey可在這里查看索抓。
三、插件依賴
在項(xiàng)目最外層的build.gradle添加“gradle-bintray-plugin”以及“android-maven-plugin”插件的依賴毯炮。
四逼肯、Module配置
在需要發(fā)布到Jcenter的module(比如library)的build.gradle里配置以下內(nèi)容:
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
version = "1.0.0" // 版本號(hào)
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
resourcePrefix "bankcardformat" // 隨意命名
defaultConfig {
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:23.+'
compile fileTree(dir: 'libs', include: ['*.jar'])
}
def siteUrl = 'https://github.com/smuyyh/BankCardFormat'? ? // Git項(xiàng)目主頁(yè)
def gitUrl = 'https://github.com/smuyyh/BankCardFormat.git' // Git倉(cāng)庫(kù)url
group = "com.yuyh.bankcardformat" // 一般為包名
install {
repositories.mavenInstaller {
// 生成POM.xml
pom {
project {
packaging 'aar'
name 'Android BankCardFormat' // 項(xiàng)目描述
url siteUrl
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer { // 開發(fā)者個(gè)人信息
id 'smuyyh'
name 'smuyyh'
email 'smuyyh@gmail.com'
}
}
scm {
connection gitUrl
developerConnection gitUrl
url siteUrl
}
}
}
}
}
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}
task javadoc(type: Javadoc) {
options.encoding = "UTF-8" // 設(shè)置編碼,否則中文可能會(huì)提示出錯(cuò)
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives javadocJar
archives sourcesJar
}
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
configurations = ['archives']
pkg {
repo = "maven" // 發(fā)布到Maven庫(kù)
name = "BankCardFormat" // 發(fā)布到JCenter上的項(xiàng)目名字
websiteUrl = siteUrl
vcsUrl = gitUrl
licenses = ["Apache-2.0"]
publish = true
}
}
五桃煎、配置Username和APIKey
在local.properties文件配置Username和APIKey篮幢。
bintray.user= xxxx
bintray.apikey= xxxx
正常情況下local.properties應(yīng)該加入到.gitignore文件里,因?yàn)檫@兩項(xiàng)屬于隱私信息为迈,無(wú)需上傳到GitHub洲拇。當(dāng)然了,也可把bintray.user及bintray.apiKey配置在Gradle用戶目錄下的gradle.properties(不存在則新建)曲尸,例如Windows是在C:/user/username/.gradle赋续,OSX和Linux在~/.gradle
六、ReBuild
Rebuild一下項(xiàng)目另患,會(huì)發(fā)現(xiàn)在/build/outputs/aar下生成兩個(gè)文件纽乱,這就是library打包出來(lái)的二進(jìn)制文件。
七昆箕、上傳項(xiàng)目到Jcenter
在Android Studio的Terminal執(zhí)行以下命令:
gradlew javadocJar
gradlew sourcesJar
gradlew install
gradlew bintrayUpload
執(zhí)行成功之后鸦列,在Bintray個(gè)人主頁(yè)下面可以看到Maven多了一個(gè)Package租冠。
八、申請(qǐng)項(xiàng)目加入Jcenter
九薯嗤、等待審核
審核速度挺快顽爹,一般幾個(gè)小時(shí)左右會(huì)通過(guò)。Bintray會(huì)向您發(fā)送一條成功的信息骆姐。那么就完成上傳了镜粤。
項(xiàng)目依賴
dependencies{? ? compile'com.yuyh.bankcardformat:library:1.0.0'}
項(xiàng)目更新
上傳的庫(kù)進(jìn)行升級(jí)的時(shí)候,須更改build.gradle下的version玻褪、versionCode肉渴、versionName,否則無(wú)法進(jìn)行打包上傳带射。更改完之后重新執(zhí)行上傳項(xiàng)目到Jcenter步驟同规。上傳完成可在項(xiàng)目主頁(yè)下看到更新的版本號(hào)。
———-
若在上傳的時(shí)候窟社,出現(xiàn)GBK編碼錯(cuò)誤券勺,嘗試在task javadoc(type: Javadoc) 下設(shè)置UTF-8編碼:
options.encoding = “UTF-8”
無(wú)法解決請(qǐng)參考以下這個(gè)Gradle文件的配置:
https://github.com/msdx/gradle-publish/blob/master/bintray.gradle