mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-04 15:38:59 +00:00
29 lines
518 B
Groovy
29 lines
518 B
Groovy
apply plugin: 'android-library'
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
buildToolsVersion "21.1.1"
|
|
|
|
defaultConfig {
|
|
targetSdkVersion 21
|
|
minSdkVersion 9
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
dexOptions {
|
|
incremental true
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
android.libraryVariants.all { variant ->
|
|
variant.checkManifest.dependsOn generateCodeAndResources
|
|
}
|