Skip to content

Commit 075e8e8

Browse files
authored
Minimal update for Android 15 (#16)
Using Android Studio Koala Feature Drop | 2024.1.2 Patch 1 September 17, 2024 with AGP 8.6.1 & gradle 8.7
1 parent 3a208f4 commit 075e8e8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdk 34
4+
compileSdk 35
55

66
defaultConfig {
7-
minSdkVersion 19
8-
targetSdk 34
7+
minSdkVersion 21
8+
targetSdk 35
99
}
1010

1111
buildTypes {
@@ -21,9 +21,9 @@ android {
2121
}
2222

2323
dependencies {
24-
implementation fileTree(dir: 'libs', include: ['*.jar'])
25-
implementation 'com.android.support:support-annotations:28.0.0'
26-
implementation 'com.android.support:appcompat-v7:28.0.0'
24+
// Temporary workaround https://issuetracker.google.com/issues/272973596
25+
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.22"))
26+
implementation 'androidx.appcompat:appcompat:1.7.1'
27+
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
2728
}
2829

29-

0 commit comments

Comments
 (0)