From 619f6fa0f0121d49da04f15e5cab376ac20b0f9b Mon Sep 17 00:00:00 2001 From: psychowood Date: Tue, 18 Apr 2023 18:29:18 +0200 Subject: [PATCH] Bump androidx dependencies, compileSdkVersion to 33 and versionCode to 365 --- app/build.gradle | 11 ++++++----- build.gradle | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index aef5052..4a8798f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,7 +5,7 @@ def getVersionCode = { return versionCode } def getApplicationId = { return applicationId } android { - compileSdkVersion 30 + compileSdkVersion 33 defaultConfig { applicationId getApplicationId() minSdkVersion 23 @@ -29,10 +29,11 @@ dependencies { implementation 'com.google.android.gms:play-services-wearable:18.0.0' implementation 'androidx.percentlayout:percentlayout:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' - implementation 'androidx.recyclerview:recyclerview:1.2.0-alpha03' - implementation 'androidx.wear:wear:1.0.0' + implementation 'androidx.recyclerview:recyclerview:1.3.0' + implementation 'androidx.wear:wear:1.2.0' compileOnly 'com.google.android.wearable:wearable:2.9.0' - implementation "androidx.constraintlayout:constraintlayout:1.1.3" - compileOnly 'org.projectlombok:lombok:1.18.12' + implementation "androidx.constraintlayout:constraintlayout:2.1.4" annotationProcessor 'org.projectlombok:lombok:1.18.12' + //noinspection AnnotationProcessorOnCompilePath + compileOnly 'org.projectlombok:lombok:1.18.12' } diff --git a/build.gradle b/build.gradle index b770684..7e12806 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { ext { applicationId = 'com.psychowood.twelveishredux' - versionCode = 364 + versionCode = 365 versionName = '2.4.1' }