diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-07-26 16:37:44 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-07-26 17:18:58 +0530 |
commit | 1d77eadb114b0e105a37c9dd84e27286c522b99f (patch) | |
tree | f9268ff4ded2a8e3a08ede9eccca5dd622e4c376 | |
parent | fa5062871939a2352552a193ca993227526a9f36 (diff) |
fix(autofill-parser): remove Kotlin 1.7 compat workarounds
It's not worth trying to maintain this
-rw-r--r-- | autofill-parser/build.gradle.kts | 8 | ||||
-rw-r--r-- | gradle/libs.versions.toml | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/autofill-parser/build.gradle.kts b/autofill-parser/build.gradle.kts index 6e6e8dcf..814c3cc0 100644 --- a/autofill-parser/build.gradle.kts +++ b/autofill-parser/build.gradle.kts @@ -4,9 +4,6 @@ */ @file:Suppress("UnstableApiUsage") -import org.jetbrains.kotlin.gradle.dsl.KotlinVersion -import org.jetbrains.kotlin.gradle.tasks.KotlinCompile - plugins { id("com.github.android-password-store.published-android-library") id("com.github.android-password-store.kotlin-android") @@ -22,12 +19,7 @@ android { namespace = "com.github.androidpasswordstore.autofillparser" } -tasks.withType<KotlinCompile>().configureEach { - compilerOptions { languageVersion.set(KotlinVersion.KOTLIN_1_7) } -} - dependencies { - implementation(platform(libs.kotlin1710.bom)) implementation(libs.androidx.annotation) implementation(libs.androidx.autofill) implementation(libs.androidx.core.ktx) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 3cb3b749..c650b6ef 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -9,7 +9,6 @@ coroutines = "1.7.3" flowbinding = "1.2.0" hilt = "2.47" kotlin = "1.9.0" -kotlin1710 = { strictly = "[1.7.0,)", prefer = "1.7.10" } leakcanary = "2.12" lifecycle = "2.6.1" @@ -70,7 +69,6 @@ dagger-hilt-android = { module = "com.google.dagger:hilt-android", version.ref = dagger-hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" } dagger-hilt-core = { module = "com.google.dagger:hilt-core", version.ref = "hilt" } kotlin-bom = { module = "org.jetbrains.kotlin:kotlin-bom", version.ref = "kotlin" } -kotlin1710-bom = { module = "org.jetbrains.kotlin:kotlin-bom", version.ref = "kotlin1710" } kotlinx-collections-immutable = "org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5" kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "coroutines" } kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" } |