Moved to Android Studio

This commit is contained in:
Erik C. Thauvin 2015-04-15 23:55:59 -07:00
parent 4f2c43cc44
commit 3d161aecf4
26 changed files with 597 additions and 103 deletions

30
app/build.gradle Normal file
View file

@ -0,0 +1,30 @@
apply plugin: 'com.android.application'
apply plugin: 'versionPlugin'
android {
compileSdkVersion 11
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "net.thauvin.erik.android.emprunt"
minSdkVersion 9
targetSdkVersion 9
versionCode 4
versionName "1.0.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
versionPlugin {
buildTypesMatcher = 'release'
supportBuildNumber = false
fileNameFormat = '$projectName'
}
}