aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-11-05 10:38:13 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2016-11-05 10:38:13 +1300
commitb5375c8832963070917d572ed520345f75f1b9a8 (patch)
tree10a7f39b33ac0d108c5aed8dee3b77b8cdbda944 /app/build.gradle
parent958366ccabaaa2768fd4030fdb7c4cfc7ba04dd2 (diff)
downloadetbsa-traccar-manager-android-b5375c8832963070917d572ed520345f75f1b9a8.tar.gz
etbsa-traccar-manager-android-b5375c8832963070917d572ed520345f75f1b9a8.tar.bz2
etbsa-traccar-manager-android-b5375c8832963070917d572ed520345f75f1b9a8.zip
Start app from scratch
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle19
1 files changed, 10 insertions, 9 deletions
diff --git a/app/build.gradle b/app/build.gradle
index e06fb40..7a3cfe5 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,25 +1,26 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 23
- buildToolsVersion "23.0.1"
+ compileSdkVersion 24
+ buildToolsVersion "23.0.3"
defaultConfig {
applicationId "org.traccar.manager"
- minSdkVersion 10
- targetSdkVersion 23
- versionCode 1
- versionName "1.0"
+ minSdkVersion 14
+ targetSdkVersion 24
+ versionCode 10
+ versionName "2.0"
}
+
buildTypes {
release {
minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt')
}
}
}
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'
+ testCompile 'junit:junit:4.12'
+ testCompile 'org.robolectric:robolectric:3.0'
}