From 1d77eadb114b0e105a37c9dd84e27286c522b99f Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 26 Jul 2023 16:37:44 +0530 Subject: fix(autofill-parser): remove Kotlin 1.7 compat workarounds It's not worth trying to maintain this --- autofill-parser/build.gradle.kts | 8 -------- 1 file changed, 8 deletions(-) (limited to 'autofill-parser') 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().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) -- cgit v1.2.3