Skip to content

Commit ed3ee8b

Browse files
committed
update libraries
1 parent 00f86cb commit ed3ee8b

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
buildscript {
44
ext {
5-
kotlin_version = '1.6.21'
5+
kotlin_version = '1.8.22'
66
}
77
ext.versions = [
88
'compileSdk': 34,

sdk-example-kt/build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,17 @@ android {
3434
sourceCompatibility = 1.8
3535
targetCompatibility = 1.8
3636
}
37+
38+
kotlinOptions {
39+
jvmTarget = "1.8"
40+
}
3741
}
3842

3943
dependencies {
40-
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
44+
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
4145

4246
implementation project(":studyplus-android-sdk")
4347

44-
implementation "androidx.appcompat:appcompat:1.2.0"
45-
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
48+
implementation "androidx.appcompat:appcompat:1.6.1"
49+
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
4650
}

studyplus-android-sdk/build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,21 @@ android {
4040
targetCompatibility = 1.8
4141
}
4242

43+
kotlinOptions {
44+
jvmTarget = "1.8"
45+
}
46+
4347
lint {
4448
abortOnError false
4549
}
4650
}
4751

4852
dependencies {
49-
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
53+
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
5054

51-
implementation "androidx.annotation:annotation:1.1.0"
55+
implementation "androidx.annotation:annotation:1.7.0"
5256

53-
implementation platform("com.squareup.okhttp3:okhttp-bom:4.9.1")
57+
implementation platform("com.squareup.okhttp3:okhttp-bom:4.12.0")
5458
implementation "com.squareup.okhttp3:okhttp"
5559

5660
testImplementation "junit:junit:4.13.2"

0 commit comments

Comments
 (0)