This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
tueroeffner/app/build.gradle

34 lines
784 B
Groovy
Raw Normal View History

2015-01-24 23:28:19 +01:00
apply plugin: 'com.android.application'
android {
2015-01-25 18:13:37 +01:00
compileSdkVersion 21
2015-01-25 12:02:16 +01:00
buildToolsVersion "21.1.1"
2015-01-24 23:28:19 +01:00
defaultConfig {
applicationId "me.datenknoten.tueroeffner"
minSdkVersion 14
2015-01-25 18:13:37 +01:00
targetSdkVersion 21
2015-01-24 23:28:19 +01:00
versionCode 1
versionName "1.0"
}
buildTypes {
release {
2015-01-25 22:27:30 +01:00
testCoverageEnabled true
2015-01-24 23:28:19 +01:00
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
2015-01-25 22:27:30 +01:00
debug {
testCoverageEnabled true
}
}
jacoco {
version = '0.7.2.201409121644'
2015-01-24 23:28:19 +01:00
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.2'
2015-01-24 23:28:19 +01:00
}