diff --git a/build.gradle b/build.gradle index d021e93..ed676d4 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 + minSdkVersion 21 + targetSdk 35 } buildTypes { @@ -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' } -