29 lines
663 B
Groovy
29 lines
663 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion versions.compileSdk
|
|
buildToolsVersion versions.buildTools
|
|
|
|
defaultConfig {
|
|
applicationId "org.moire.ultrasonic"
|
|
minSdkVersion versions.minSdk
|
|
targetSdkVersion versions.targetSdk
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':menudrawer')
|
|
compile project(':pulltorefresh')
|
|
compile project(':library')
|
|
|
|
compile androidSupport.support
|
|
compile androidSupport.design
|
|
}
|