You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.3 KiB
85 lines
2.3 KiB
apply plugin: 'com.android.library'
|
|
|
|
//apply plugin: 'com.github.dcendents.android-maven'
|
|
//
|
|
//group='com.github.AriaLyy'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.2"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion 23
|
|
versionCode 58
|
|
versionName "2.1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
|
}
|
|
apply from: 'jcenter.gradle'
|
|
|
|
// build a jar with source files
|
|
//task sourcesJar(type: Jar) {
|
|
// from android.sourceSets.main.java.srcDirs
|
|
// classifier = 'sources'
|
|
//}
|
|
//
|
|
//task javadoc(type: Javadoc) {
|
|
// failOnError false
|
|
// source = android.sourceSets.main.java.sourceFiles
|
|
// classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
|
|
// classpath += configurations.compile
|
|
//}
|
|
//
|
|
//// build a jar with javadoc
|
|
//task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
// classifier = 'javadoc'
|
|
// from javadoc.destinationDir
|
|
//}
|
|
//
|
|
//android.libraryVariants.all { variant ->
|
|
// println variant.javaCompile.classpath.files
|
|
// if (variant.name == 'release') {
|
|
// //我们只需 release 的 javadoc
|
|
// task("generate${variant.name.capitalize()}Javadoc", type: Javadoc) {
|
|
// // title = ''
|
|
// // description = ''
|
|
// source = variant.javaCompile.source
|
|
// classpath = files(variant.javaCompile.classpath.files, project.android.getBootClasspath())
|
|
// options {
|
|
// encoding "utf-8"
|
|
// links "http://docs.oracle.com/javase/7/docs/api/"
|
|
// linksOffline "http://d.android.com/reference", "${android.sdkDirectory}/docs/reference"
|
|
// }
|
|
// exclude '**/BuildConfig.java'
|
|
// exclude '**/R.java'
|
|
// }
|
|
// task("javadoc${variant.name.capitalize()}Jar", type: Jar,
|
|
// dependsOn: "generate${variant.name.capitalize()}Javadoc") {
|
|
// classifier = 'javadoc'
|
|
// from tasks.getByName("generate${variant.name.capitalize()}Javadoc").destinationDir
|
|
// }
|
|
// artifacts {
|
|
// archives tasks.getByName("javadoc${variant.name.capitalize()}Jar")
|
|
// }
|
|
// }
|
|
//}
|
|
//
|
|
//artifacts {
|
|
// archives sourcesJar
|
|
// archives javadocJar
|
|
//}
|
|
|
|
//apply frome: 'build_source.gradle'
|
|
//apply from: 'jcenter.gradle' |