diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/build.gradle	Wed Sep 05 20:07:35 2018 -0400
@@ -0,0 +1,32 @@
+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'])
+    implementation 'com.android.support:appcompat-v7:27.1.1'
+    testImplementation 'junit:junit:4.12'
+    androidTestImplementation 'com.android.support.test:runner:1.0.2'
+    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
+    compileOnly 'de.robv.android.xposed:api:82'
+}