Gasflow-fork/app/build.gradle

29 lines
697 B
Groovy
Raw Normal View History

2015-10-03 15:19:25 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 'android-N'
buildToolsVersion '24.0.0-rc1'
2015-10-03 15:19:25 +01:00
defaultConfig {
applicationId "com.mridang.speedo"
minSdkVersion 16
targetSdkVersion 23
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.0.0-alpha1'
2015-10-03 15:19:25 +01:00
compile project(':colorPicker')
compile 'ch.acra:acra:4.8.5'
}