Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
apply plugin: 'com.android.library'

android {
compileSdk 34
compileSdk 35

defaultConfig {
minSdkVersion 19
targetSdk 34
minSdkVersion 21
targetSdk 35
}

buildTypes {
Expand All @@ -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'
}