blob: 6cc56988b9d2b9fc1624bbab5f16a30fdae66ce6 [file] [log] [blame]
Nicholas Chum702d4672016-07-08 21:59:45 -04001apply plugin: 'com.android.application'
2
3android {
4 compileSdkVersion 24
5 buildToolsVersion "24.0.0"
6
7 lintOptions {
8 checkReleaseBuilds false
9 abortOnError false
10 }
11
12 applicationVariants.all { variant ->
13 variant.outputs.each { output ->
14 output.outputFile = new File(
Nicholas Chumbbf9da52016-07-11 01:46:37 -040015 output.outputFile.parent, "masquerade_beta_testers" + versionCode + ".apk")
Nicholas Chum702d4672016-07-08 21:59:45 -040016 }
17 }
18
19 defaultConfig {
Nicholas Chumbbf9da52016-07-11 01:46:37 -040020 applicationId "masquerade.substratum"
Nicholas Chum702d4672016-07-08 21:59:45 -040021 minSdkVersion 23
22 targetSdkVersion 24
Nicholas Chum57bc4742016-07-12 00:05:21 -040023 versionCode 10
24 versionName "ten"
Nicholas Chum702d4672016-07-08 21:59:45 -040025 }
Nicholas Chum57bc4742016-07-12 00:05:21 -040026
Nicholas Chum702d4672016-07-08 21:59:45 -040027 buildTypes {
28 debug {
29 minifyEnabled true
30 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
31 }
32 release {
33 minifyEnabled true
34 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
35 }
36 }
Nicholas Chum57bc4742016-07-12 00:05:21 -040037}