Initial commit
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..ad8f2ea
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,41 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 24
+ buildToolsVersion "24.0.0"
+
+ lintOptions {
+ checkReleaseBuilds false
+ abortOnError false
+ }
+
+ applicationVariants.all { variant ->
+ variant.outputs.each { output ->
+ output.outputFile = new File(
+ output.outputFile.parent, "substratumhelper_beta_testers" + versionCode + ".apk")
+ }
+ }
+
+ defaultConfig {
+ applicationId "projekt.substratum.helper"
+ minSdkVersion 23
+ targetSdkVersion 24
+ versionCode 1
+ versionName "masquerade"
+ }
+ buildTypes {
+ debug {
+ minifyEnabled true
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ release {
+ minifyEnabled true
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ testCompile 'junit:junit:4.12'
+}