mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-10 02:18:57 +00:00
33 lines
573 B
Groovy
33 lines
573 B
Groovy
apply plugin: 'com.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
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':branding')
|
|
}
|