Files
palemoon27/mobile/android/gradle/preprocessed_resources/build.gradle
T

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')
}