From c6879f14223a82f9e67767fd7299606f6d43703a Mon Sep 17 00:00:00 2001 From: Iván Ávalos Date: Sun, 8 Jan 2023 17:00:11 -0600 Subject: Migrate to AndroidX --- app/build.gradle | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle index e380fdef..19f45111 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,12 +1,12 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 30 + compileSdkVersion 33 defaultConfig { applicationId "me.avalos.dsub" - minSdkVersion 15 - targetSdkVersion 29 + minSdkVersion 26 + targetSdkVersion 33 versionCode 208 versionName '5.5.3' setProperty("archivesBaseName", "DSub $versionName") @@ -59,16 +59,21 @@ android { storeFile file('../debug.keystore') } } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } } dependencies { implementation project(path: ':ServerProxy') implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation 'com.android.support:support-v4:27.1.+' - implementation 'com.android.support:appcompat-v7:27.1.+' - implementation 'com.android.support:mediarouter-v7:27.1.+' - implementation 'com.android.support:recyclerview-v7:27.1.+' - implementation 'com.android.support:design:27.1.+' + implementation 'androidx.legacy:legacy-support-v4:1.0.0' + implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'androidx.mediarouter:mediarouter:1.3.1' + implementation 'androidx.recyclerview:recyclerview:1.2.1' + implementation 'com.google.android.material:material:1.6.0' googleImplementation 'com.google.android.gms:play-services-cast:8.1.0' implementation 'com.sothree.slidinguppanel:library:3.0.0' implementation 'de.hdodenhof:circleimageview:1.2.1' -- cgit v1.2.3