view app/build.gradle @ 3:c1204965159f

Update for new Maps version
author Brad Greco <brad@bgreco.net>
date Wed, 05 Sep 2018 21:23:32 -0400
parents fbccc77ea0e6
children 3ec20fbf7dc5
line wrap: on
line source

apply plugin: 'com.android.application'

repositories {
    jcenter();
}

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "net.bgreco.gmapzoominvert"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    compileOnly 'de.robv.android.xposed:api:82'
}