34 lines
772 B
Groovy
34 lines
772 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "com.www.client"
|
|
minSdkVersion 16
|
|
targetSdkVersion 23
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
debuggable true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE.txt'
|
|
exclude 'META-INF/NOTICE.txt'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:support-v4:+'
|
|
compile 'com.google.maps.android:android-maps-utils:+'
|
|
compile 'com.google.android.gms:play-services:+'
|
|
|
|
compile fileTree(dir: 'libs', include: '*.jar')
|
|
}
|