From ee1332aaca31ffaa45d7425fbe3fc85ef71c1482 Mon Sep 17 00:00:00 2001 From: Cameron Banga Date: Wed, 5 Dec 2018 20:07:31 -0600 Subject: [PATCH] Update to compile on Android Studio 3.2 without errors. --- app/build.gradle | 10 +++++----- app/src/main/AndroidManifest.xml | 4 ---- build.gradle | 4 +++- gradle/wrapper/gradle-wrapper.properties | 4 ++-- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 0ce0c83..1df0b95 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,11 +2,11 @@ apply plugin: 'com.android.application' android { compileSdkVersion 25 - buildToolsVersion "25.0.3" + buildToolsVersion '28.0.3' defaultConfig { applicationId "com.snatik.matches" - minSdkVersion 11 + minSdkVersion 19 targetSdkVersion 25 versionCode 1006 versionName "1.0.06" @@ -20,7 +20,7 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:25.3.1' + implementation fileTree(dir: 'libs', include: ['*.jar']) + testImplementation 'junit:junit:4.12' + implementation 'com.android.support:appcompat-v7:25.3.1' } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index cf9b152..4bd9a20 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -2,10 +2,6 @@ - -