Gasflow-fork/app/build.gradle

29 lines
677 B
Groovy
Raw Normal View History

2015-10-03 15:19:25 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion '24.0.2'
2015-10-03 15:19:25 +01:00
defaultConfig {
applicationId "com.mridang.speedo"
minSdkVersion 16
targetSdkVersion 24
versionCode 2
versionName "1.1"
2015-10-03 15:19:25 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
2015-10-03 15:19:25 +01:00
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:24.2.1'
2015-10-03 15:19:25 +01:00
compile project(':colorPicker')
compile 'ch.acra:acra:4.8.5'
}