Newer
Older
GpsTracker / phoneClients / android / app / build.gradle
@Nick Fox Nick Fox on 11 Feb 2016 690 bytes update gradle in android client
apply plugin: 'android'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.websmithing.gpstracker"
        minSdkVersion 10
        targetSdkVersion 23
        versionCode 15
        versionName "4.0.4"
    }
    buildTypes {
        release {
            debuggable false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.google.android.gms:play-services:8.4.0'
    compile 'com.loopj.android:android-async-http:1.4.9'
}