blob: 954693abcd702467b6dbafb8d8378b1493b6cd72 [file] [log] [blame]
Nicholas Chum702d4672016-07-08 21:59:45 -04001apply plugin: 'com.android.application'
2
3android {
Nicholas Chum18d2e622016-07-12 00:38:15 -04004 compileSdkVersion 23
5 buildToolsVersion "23.0.3"
Nicholas Chum702d4672016-07-08 21:59:45 -04006
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 Chum456cf7d2016-07-15 09:05:18 -040021 minSdkVersion 21
Nicholas Chum18d2e622016-07-12 00:38:15 -040022 targetSdkVersion 23
Nicholas Chum597e0ca2016-11-29 05:28:02 -050023 versionCode 16
24 versionName "sixteen"
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 Chum67e9dcb2016-07-14 04:32:32 -040037
38 dependencies {
39 testCompile 'junit:junit:4.12'
40 }
Nicholas Chum57bc4742016-07-12 00:05:21 -040041}