From 5ceba40a48e94ea9677914fe8fe06f997ea06ec2 Mon Sep 17 00:00:00 2001 From: eltos Date: Mon, 20 Aug 2018 20:33:09 +0200 Subject: [PATCH] Everyone likes Pie (Update to android 9, API 28) --- build.gradle | 1 - simpledialogfragment/build.gradle | 16 ++++++++-------- testApp/build.gradle | 14 +++++++------- 3 files changed, 15 insertions(+), 16 deletions(-) diff --git a/build.gradle b/build.gradle index 9faca35..941d504 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,6 @@ buildscript { gradlePluginVersion = '3.0.1' // .. lintVersion = '26.0.1' // .. - buildToolsVersion = '27.0.3' } repositories { google() diff --git a/simpledialogfragment/build.gradle b/simpledialogfragment/build.gradle index 54071b2..ef4807d 100644 --- a/simpledialogfragment/build.gradle +++ b/simpledialogfragment/build.gradle @@ -1,14 +1,14 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 27 - buildToolsVersion '27.0.3' + compileSdkVersion 28 + buildToolsVersion '28.0.2' defaultConfig { minSdkVersion 14 - targetSdkVersion 27 + targetSdkVersion 28 versionCode 300 - versionName "3.0" + versionName '3.0' } buildTypes { release { @@ -22,10 +22,10 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:27.1.1' - compile 'com.android.support:design:27.1.1' - compile 'com.android.support.constraint:constraint-layout:1.0.2' - compile 'com.alimuzaffar.lib:pinentryedittext:1.3.3' + implementation 'com.android.support:appcompat-v7:28.0.0-rc01' + implementation 'com.android.support:design:28.0.0-rc01' + implementation 'com.android.support.constraint:constraint-layout:1.1.2' + implementation 'com.alimuzaffar.lib:pinentryedittext:1.3.3' lintChecks project(':lintchecks') } diff --git a/testApp/build.gradle b/testApp/build.gradle index 8b5e386..2289948 100644 --- a/testApp/build.gradle +++ b/testApp/build.gradle @@ -1,15 +1,15 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 27 - buildToolsVersion '27.0.3' + compileSdkVersion 28 + buildToolsVersion '28.0.2' defaultConfig { - applicationId "eltos.simpledialogfragments.test" + applicationId 'eltos.simpledialogfragments.test' minSdkVersion 14 - targetSdkVersion 25 + targetSdkVersion 28 versionCode 300 - versionName "3.0" + versionName '3.0' } buildTypes { release { @@ -22,7 +22,7 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:27.1.1' - compile 'com.google.zxing:core:3.2.0' + compile 'com.android.support:appcompat-v7:28.0.0-rc01' + compile 'com.google.zxing:core:3.3.3' compile project(path: ':simpledialogfragment') }