Skip to content

Commit 9d39a55

Browse files
committed
fix gradle failure caused by lib versions
1 parent 959485e commit 9d39a55

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = getVersionName()
66

77
plugins {
88
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
9-
id("org.jetbrains.kotlin.jvm") version "1.6.0"
9+
id("org.jetbrains.kotlin.jvm") version "1.8.0"
1010

1111
// Apply the java-library plugin for API and implementation separation.
1212
`java-library`
@@ -22,8 +22,8 @@ buildscript {
2222
gradlePluginPortal()
2323
}
2424
dependencies {
25-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0")
26-
classpath("org.jetbrains.kotlin:kotlin-serialization:1.6.0")
25+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0")
26+
classpath("org.jetbrains.kotlin:kotlin-serialization:1.8.0")
2727
classpath("com.android.tools.build:gradle:7.0.4")
2828
}
2929
}

lib/build.gradle.kts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ val VERSION_NAME: String by project
1010

1111
android {
1212
compileSdk = 33
13-
buildToolsVersion = "31.0.0"
1413

1514
defaultConfig {
1615
multiDexEnabled = true
@@ -45,9 +44,7 @@ dependencies {
4544
implementation("com.segment.analytics.kotlin:android:1.10.3")
4645
implementation("androidx.multidex:multidex:2.0.1")
4746

48-
implementation("androidx.core:core-ktx:1.9.0")
49-
implementation("androidx.appcompat:appcompat:1.6.1")
50-
implementation("com.google.android.material:material:1.8.0")
47+
implementation("androidx.core:core-ktx:1.8.0")
5148
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
5249

5350
implementation("androidx.lifecycle:lifecycle-process:2.4.1")

0 commit comments

Comments
 (0)