Convert project from ant to gradle

This commit is contained in:
Branden Archer
2017-09-13 10:33:55 -04:00
parent ffee8003f0
commit 3a63c45015
38 changed files with 317 additions and 130 deletions

19
app/build.gradle Normal file
View File

@@ -0,0 +1,19 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "protect.babymonitor"
minSdkVersion 17
targetSdkVersion 17
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}