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
buildToolsVersion "23.0.1"
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'])
compile 'com.android.support:support-v4:23.1.1'
2015-10-03 15:19:25 +01:00
compile project(':colorPicker')
}