From 418367bf3cf36265b5a5f42ddb66f36de910dc44 Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Thu, 28 Jun 2018 13:11:58 -0500 Subject: [PATCH] Target Android P --- .travis.yml | 2 +- app/build.gradle | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 34c3ba807..600c11df9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ sudo: required jdk: oraclejdk8 env: global: - - TARGET_API=27 + - TARGET_API=28 - BUILD_TOOLS=27.0.3 matrix: - EMULATOR_API=21 ANDROID_ABI=armeabi-v7a diff --git a/app/build.gradle b/app/build.gradle index 4e9df28e6..c29ae9f14 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,15 +14,14 @@ android { textReport true } - compileSdkVersion 27 - buildToolsVersion '27.0.3' + compileSdkVersion 28 defaultConfig { testApplicationId "org.tasks.test" applicationId "org.tasks" versionCode 533 versionName "6.1" - targetSdkVersion 27 + targetSdkVersion 28 minSdkVersion 15 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" @@ -109,7 +108,7 @@ configurations { final DAGGER_VERSION = '2.16' final BUTTERKNIFE_VERSION = '8.8.1' -final SUPPORT_VERSION = '27.1.1' +final SUPPORT_VERSION = '28.0.0-alpha3' final ROOM_VERSION = '1.1.1' final STETHO_VERSION = '1.5.0' final TESTING_SUPPORT_VERSION = '1.0.0'