From 0a80324c0741e7bf5ebd6502ab86467eee15b87c Mon Sep 17 00:00:00 2001 From: Christopher Beckmann Date: Thu, 30 Jan 2020 16:14:47 +0100 Subject: [PATCH] Target SDK 26; Library updates Version increase to v1.0.4 --- app/build.gradle | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 071e122..552d013 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,14 +1,14 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 25 + compileSdkVersion 26 defaultConfig { applicationId "org.secuso.privacyfriendlymemory" minSdkVersion 17 - targetSdkVersion 25 - versionCode 4 - versionName "1.0.3" + targetSdkVersion 26 + versionCode 5 + versionName "1.0.4" } buildTypes { release { @@ -19,8 +19,8 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:25.3.1' - compile 'com.android.support:design:25.3.1' + implementation fileTree(dir: 'libs', include: ['*.jar']) + testImplementation 'junit:junit:4.12' + implementation 'com.android.support:appcompat-v7:26.1.0' + implementation 'com.android.support:design:26.1.0' }