Gasflow-fork/app/build.gradle

26 lines
617 B
Groovy
Raw Normal View History

2015-10-03 15:19:25 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
2016-03-19 14:52:40 +00:00
buildToolsVersion "23.0.2"
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'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
2016-03-19 14:52:40 +00:00
compile 'com.android.support:support-v4:23.2.0'
2015-10-03 15:19:25 +01:00
compile project(':colorPicker')
}