26 строки
550 B
Groovy
26 строки
550 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "org.traccar.manager"
|
|
minSdkVersion 10
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:appcompat-v7:23.1.0'
|
|
compile 'com.google.android.gms:play-services:8.4.0'
|
|
compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
|
|
}
|