編輯:關於android開發
擁抱開源,熱愛開源,將我們認為不錯的代碼開源到gihtub,將我們的庫發布到jcenter\mevan等。
在根目錄的gradle文件下加入
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
個人認為這1個最好保持一直。
最後我們根目錄下的gradle文件變成這個樣子
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
group = PROJ_GROUP
version = PROJ_VERSION
project.archivesBaseName = PROJ_ARTIFACTID
apply plugin: 'com.jfrog.bintray'
apply plugin: 'maven-publish'
task sourcesJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier = 'sources'
}
task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += configurations.compile
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
javadoc {
options{
encoding "UTF-8"
charSet 'UTF-8'
author true
version true
links "http://docs.oracle.com/javase/7/docs/api"
title PROJ_ARTIFACTID
}
}
artifacts {
archives javadocJar
archives sourcesJar
}
def pomConfig = {
licenses {
license {
name "The Apache Software License, Version 2.0"
url "http://www.apache.org/licenses/LICENSE-2.0.txt"
distribution "repo"
}
}
developers {
developer {
id DEVELOPER_ID
name DEVELOPER_NAME
email DEVELOPER_EMAIL
}
}
//這裡有引號,並且有個空格,否則生成不了依賴,主要是這裡的dependencies並不是build.gradle裡的dependencies,而gradle會把他當成自身的dependencies處理
"dependencies " {
// dependency{
// groupId "com.alibaba"
// artifactId "fastjson"
// "version " "1.2.6"
// //同dependencies
// }
}
}
publishing {
publications {
mavenJava(MavenPublication) {
artifactId PROJ_ARTIFACTID
pom{
packaging 'aar'
}
pom.withXml {
def root = asNode()
root.appendNode('description', PROJ_DESCRIPTION)
root.children().last() + pomConfig
}
}
}
}
bintray {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
user = properties.getProperty('BINTRAY_USER');
key = properties.getProperty('BINTRAY_KEY');
configurations = ['archives']
publications = ['mavenJava']
publish = true
pkg {
repo = 'maven'
name = PROJ_NAME
desc = PROJ_DESCRIPTION
websiteUrl = PROJ_WEBSITEURL
issueTrackerUrl = PROJ_ISSUETRACKERURL
vcsUrl = PROJ_VCSURL
licenses = ['Apache-2.0']
publicDownloadNumbers = true
}
}
上述文件幾乎不用修改,假如你將要上傳的包 包含其他的三方庫。在以下塊中進行申明
"dependencies " {
// dependency{
// groupId "com.alibaba"
// artifactId "fastjson"
// "version " "1.2.6"
// //同dependencies
// }
}
通俗易懂,一目了然,就不多做解釋了。
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
signingConfigs {
config {
keyAlias 'guolei'
keyPassword '123456'
storeFile file('guolei.jks')
storePassword '123456'
}
}
defaultConfig {
applicationId "com.gl.draggridview"
minSdkVersion 17
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
//compile 'com.android.support:appcompat-v7:23.1.1'
}
apply from:'../bintray.gradle'
注意bintray.gradle 一定要放在文件最下面。
配置BINTRAY_KEY 和BINTRAY_USER 也就是一開始注冊的那個
BINTRAY_KEY=e21c3f96df17xxxxxxxx
BINTRAY_USER=guolei1130
這裡對應的是bintray.gradle中的這一段代碼,當然,你可以修改這段代碼,將這2個屬性寫在任意位置
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
user = properties.getProperty('BINTRAY_USER');
key = properties.getProperty('BINTRAY_KEY');
最後,sync now。
build,生成對應的aar包。
在model 對應的other task中,找到上面2個,點擊生成 一般不慧出錯
點擊第二個即可
點擊上圖中的第一個task,如果出錯,根據錯誤排查即可,一般就是身份驗證的相關問題。
這個mevan倉庫就是我剛才上傳的,但是我們需要將他導入到jcenter 中,點擊jcenter.點擊有側導入,篩選將要導入的庫,等待管理員審核即可。
github地址,求個star
最後來張圖證明我是剛剛上傳的。
沒錯,就是這麼so easy.
Android—自定義控件實現ListView下拉刷新,androidlistview這篇博客為大家介紹一個android常見的功能——ListV
Android 熱修復使用Gradle Plugin1.5改造Nuwa插件 隨著谷歌的Gradle插件版本的不斷升級,Gradle插件現在最新的已經到了2.1.0-b
Android開發: fragment解析及案例 Fragment 設計理念 在設計應用時特別是Android 應用 ,有眾多的分辨率要去適應,而fragme
自用工程教程(一)建立開發環境與HelloWorld,自用helloworld從今天開始,我們將在老師的帶領下嘗試做一個Android平台移動端實現捕獲網絡數據包功能的A