1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2326 App | Tech | Update Kotlin, Gradle, Compose and other framework libraries (#1017)

This commit is contained in:
Mikhail 2024-03-27 17:21:20 +01:00 committed by GitHub
parent c3c30e6e26
commit 6e8d8c78fc
Signed by: github
GPG key ID: B5690EEEBB952194
100 changed files with 1769 additions and 1424 deletions

View file

@ -1,4 +1,5 @@
import com.android.build.gradle.LibraryPlugin
import org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper
buildscript {
ext.compile_sdk = 34
@ -70,6 +71,18 @@ subprojects {
}
}
}
if (plugin instanceof KotlinAndroidPluginWrapper) {
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlin {
jvmToolchain(17)
}
}
}
}
plugins.withId("kotlin") {