From 2cea91f04e3ed3588c25a6a4cadfbcc1d1c39a83 Mon Sep 17 00:00:00 2001 From: AndroidDeveloperLB Date: Sat, 30 Jun 2018 13:34:40 +0300 Subject: Updated all sdks, and also updated to use AndroidX as support library. --- samples/RhythmGame/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'samples/RhythmGame/build.gradle') diff --git a/samples/RhythmGame/build.gradle b/samples/RhythmGame/build.gradle index 45022e1b..03f2ed67 100644 --- a/samples/RhythmGame/build.gradle +++ b/samples/RhythmGame/build.gradle @@ -1,14 +1,14 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 27 + compileSdkVersion 28 defaultConfig { applicationId "com.google.oboe.sample.rhythmgame" minSdkVersion 16 - targetSdkVersion 27 + targetSdkVersion 28 versionCode 1 versionName "1.0" - testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" externalNativeBuild { cmake { cppFlags "-std=c++14" @@ -31,6 +31,6 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'com.android.support:appcompat-v7:27.1.1' - implementation 'com.android.support.constraint:constraint-layout:1.1.2' + implementation 'androidx.appcompat:appcompat:1.0.0-alpha3' + implementation 'androidx.constraintlayout:constraintlayout:1.1.2' } -- cgit v1.2.3