Android Studio file structure

This commit is contained in:
2015-03-15 08:11:19 -04:00
parent 11d6bbd6f6
commit 1ff3c1c857
190 changed files with 1124 additions and 1036 deletions

24
app/build.gradle Normal file
View File

@@ -0,0 +1,24 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "org.isoron.uhabits"
minSdkVersion 21
targetSdkVersion 22
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:22.0.0'
compile files('libs/ActiveAndroid.jar')
}