Commit some new files.

This commit is contained in:
2014-03-25 17:07:33 +02:00
parent 4367222937
commit 08f8c79dd3
33 changed files with 1217 additions and 0 deletions

25
HypoAlarm/build.gradle Normal file
View File

@@ -0,0 +1,25 @@
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.0.1"
defaultConfig {
minSdkVersion 10
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:19.0.1'
compile 'com.android.support:appcompat-v7:19.0.1'
compile fileTree(dir: 'libs', include: ['*.jar'])
}