blob: fc67912c4a71ca20b3a701a88166d778ac03bc1f [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(
15 output.outputFile.parent, "substratumhelper_beta_testers" + versionCode + ".apk")
16 }
17 }
18
19 defaultConfig {
20 applicationId "projekt.substratum.helper"
21 minSdkVersion 23
22 targetSdkVersion 24
Nicholas Chum7ee005e2016-07-10 00:25:25 -040023 versionCode 3
24 versionName "three (masquerade)"
Nicholas Chum702d4672016-07-08 21:59:45 -040025 }
26 buildTypes {
27 debug {
28 minifyEnabled true
29 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
30 }
31 release {
32 minifyEnabled true
33 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
34 }
35 }
36}
37
38dependencies {
39 compile fileTree(dir: 'libs', include: ['*.jar'])
40 testCompile 'junit:junit:4.12'
41}