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:
parent
c3c30e6e26
commit
6e8d8c78fc
100 changed files with 1769 additions and 1424 deletions
13
build.gradle
13
build.gradle
|
@ -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") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue