Skip to content

Commit 53178e9

Browse files
committed
Update deps.
1 parent 6687675 commit 53178e9

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.idea/.gitignore

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath "com.android.tools.build:gradle:7.3.1"
9-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0"
9+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23"
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

library/build.gradle

+9-12
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'kotlin-parcelize'
55
apply from: "${rootDir.path}/gradle/publish.gradle"
66

77
android {
8-
compileSdk 33
8+
compileSdk 34
99
namespace "com.absinthe.lc.rulesbundle"
1010

1111
defaultConfig {
@@ -24,24 +24,21 @@ android {
2424
}
2525

2626
compileOptions {
27-
sourceCompatibility JavaVersion.VERSION_11
28-
targetCompatibility JavaVersion.VERSION_11
27+
sourceCompatibility JavaVersion.VERSION_17
28+
targetCompatibility JavaVersion.VERSION_17
2929
}
3030

3131
kotlinOptions {
32-
jvmTarget = '11'
33-
freeCompilerArgs = [
34-
//'-Xuse-k2'
35-
]
32+
jvmTarget = '17'
3633
}
3734
}
3835

3936
dependencies {
40-
implementation 'androidx.appcompat:appcompat:1.5.0'
41-
implementation 'androidx.core:core-ktx:1.9.0'
42-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
37+
implementation 'androidx.appcompat:appcompat:1.6.1'
38+
implementation 'androidx.core:core-ktx:1.12.0'
39+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0'
4340

44-
implementation 'androidx.room:room-runtime:2.5.0'
45-
implementation 'androidx.room:room-ktx:2.5.0'
41+
implementation 'androidx.room:room-runtime:2.6.1'
42+
implementation 'androidx.room:room-ktx:2.6.1'
4643
compileOnly 'javax.annotation:javax.annotation-api:1.3.2'
4744
}

0 commit comments

Comments
 (0)