From 23eda23769258708116dec23c6c4d89b178a9302 Mon Sep 17 00:00:00 2001 From: Martin Williams Date: Sun, 3 Aug 2025 14:37:52 +0100 Subject: [PATCH 1/2] SDK 35 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index d021e93..ca7a2da 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,11 @@ apply plugin: 'com.android.library' android { - compileSdk 34 + compileSdk 35 defaultConfig { minSdkVersion 19 - targetSdk 34 + targetSdk 35 } buildTypes { From 99db8c734e6addda43efa76183a50a7a9d32fe7a Mon Sep 17 00:00:00 2001 From: Martin Williams Date: Sun, 3 Aug 2025 20:17:43 +0100 Subject: [PATCH 2/2] Update libraries --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index ca7a2da..ed676d4 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ android { compileSdk 35 defaultConfig { - minSdkVersion 19 + minSdkVersion 21 targetSdk 35 } @@ -21,9 +21,9 @@ android { } dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'com.android.support:support-annotations:28.0.0' - implementation 'com.android.support:appcompat-v7:28.0.0' + // Temporary workaround https://issuetracker.google.com/issues/272973596 + implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.22")) + implementation 'androidx.appcompat:appcompat:1.7.1' + implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0' } -