Mercurial > gmapzoominvert
comparison app/build.gradle @ 2:fbccc77ea0e6
Convert to Android Studio project
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Wed, 05 Sep 2018 20:07:35 -0400 |
parents | |
children | c1204965159f |
comparison
equal
deleted
inserted
replaced
1:30f975176f8e | 2:fbccc77ea0e6 |
---|---|
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 | |
13 versionCode 1 | |
14 versionName "1.0" | |
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 implementation 'com.android.support:appcompat-v7:27.1.1' | |
28 testImplementation 'junit:junit:4.12' | |
29 androidTestImplementation 'com.android.support.test:runner:1.0.2' | |
30 androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' | |
31 compileOnly 'de.robv.android.xposed:api:82' | |
32 } |