1. 程式人生 > >Gradle上傳 aar到JCenter

Gradle上傳 aar到JCenter

1、在專案總的build.gradle 檔案中新增下面兩行程式碼

classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'

2、在要上傳的module的build.gradle 檔案裡新增一行程式碼
<pre style="background-color:#2b2b2b;color:#a9b7c6;font-family:'Menlo';font-size:12.0pt;">apply from: <span style="color:#6a8759;">'https://raw.githubusercontent.com/wfxphoebus/JCenter/master/bintray.gradle'</span>

說明一下這裡:這個把上傳到JCenter的公共不變的程式碼抽出來,方便可以直接用於其他的專案,也減少本地gradle 檔案的程式碼量,上面的地址是我的個人的github地址專案https://github.com/wfxphoebus/JCenter,可以可以拿來直接用,當然也可以fork為自己的再用。

怎麼生成這個地址:直接上圖,點選如圖的按鈕即可


3、在要上傳的module專案新增gradle.properties檔案

PROJ_GROUP=com.coke.android
PROJ_VERSION=0.0.1
PROJ_NAME=Coke
PROJ_WEBSITEURL=https://github.com/wfxphoebus/Coke-Android.git
PROJ_ISSUETRACKERURL=https://github.com/wfxphoebus/Coke-Android/issues PROJ_VCSURL=https://github.com/wfxphoebus/Coke-Android.git PROJ_DESCRIPTION=A Simple Library For Android PROJ_ARTIFACTID=Coke LICENSE_NAME='The Apache Software License, Version 2.0' LICENSE_URL='http://www.apache.org/licenses/LICENSE-2.0.txt' DEVELOPER_ID
=springwater DEVELOPER_NAME=SpringWater DEVELOPER_EMAIL=[email protected]

4、在第一張裡所示的local.properties,新增 bintray.apikey 和 bintray.user

大功告成!