From cf8ec3f658e14f615ed14d8a21f427af31a875a3 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 19 Jun 2023 22:18:29 +0530 Subject: fix(autofill-parser): restore older stdlib and language version --- autofill-parser/build.gradle.kts | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'autofill-parser/build.gradle.kts') diff --git a/autofill-parser/build.gradle.kts b/autofill-parser/build.gradle.kts index 814c3cc0..137aa2a1 100644 --- a/autofill-parser/build.gradle.kts +++ b/autofill-parser/build.gradle.kts @@ -4,6 +4,9 @@ */ @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") @@ -19,7 +22,14 @@ 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