blob: 878973953fa43c9681e98959c8ecca61921940f5 [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
lintOptions {
checkReleaseBuilds false
abortOnError false
}
applicationVariants.all { variant ->
variant.outputs.each { output ->
output.outputFile = new File(
output.outputFile.parent, "masquerade_" + versionCode + ".apk")
}
}
defaultConfig {
applicationId "masquerade.substratum"
minSdkVersion 25
targetSdkVersion 25
versionCode 23
versionName "twenty three"
}
defaultConfig {
jackOptions {
enabled true
}
}
compileOptions {
incremental true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dexOptions {
javaMaxHeapSize '2048m'
}
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dependencies {
testCompile 'junit:junit:4.12'
}
}