2015-07-26 17:03:28 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2015-07-26 23:26:28 +02:00
|
|
|
compileSdkVersion 19
|
2015-07-26 17:03:28 +02:00
|
|
|
buildToolsVersion "22.0.1"
|
|
|
|
|
|
|
|
defaultConfig {
|
2015-07-26 18:15:07 +02:00
|
|
|
applicationId "org.moire.ultrasonic"
|
2015-07-26 17:03:28 +02:00
|
|
|
minSdkVersion 14
|
2015-07-26 23:26:28 +02:00
|
|
|
targetSdkVersion 19
|
2015-07-26 17:03:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':menudrawer')
|
|
|
|
compile project(':pulltorefresh')
|
|
|
|
compile project(':library')
|
|
|
|
}
|