2
|
1 apply plugin: 'com.android.application'
|
|
2
|
|
3 repositories {
|
|
4 jcenter();
|
|
5 }
|
|
6
|
|
7 android {
|
|
8 compileSdkVersion 27
|
|
9 defaultConfig {
|
|
10 applicationId "net.bgreco.gmapzoominvert"
|
|
11 minSdkVersion 15
|
|
12 targetSdkVersion 27
|
4
|
13 versionCode 2
|
|
14 versionName "1.1"
|
2
|
15 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
16 }
|
|
17 buildTypes {
|
|
18 release {
|
|
19 minifyEnabled false
|
|
20 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
21 }
|
|
22 }
|
|
23 }
|
|
24
|
|
25 dependencies {
|
|
26 implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
27 compileOnly 'de.robv.android.xposed:api:82'
|
|
28 }
|