Skip to content

Commit

Permalink
update gradle plugin version
Browse files Browse the repository at this point in the history
  • Loading branch information
springeye committed May 6, 2024
1 parent 1172be8 commit 1a097f3
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
alias(libs.plugins.kotlinMultiplatform)
alias(libs.plugins.androidApplication)
alias(libs.plugins.jetbrainsCompose)
kotlin("plugin.serialization") version "1.9.21"
id("com.google.devtools.ksp") version "1.9.21-1.0.16"
kotlin("plugin.serialization") version "1.9.22"
id("com.google.devtools.ksp") version "1.9.22-1.0.16"
id("de.jensklingenberg.ktorfit") version "1.11.0"
id("app.cash.sqldelight") version "2.0.1"
id("com.codingfeline.buildkonfig") version "0.15.1"
Expand Down Expand Up @@ -51,7 +51,6 @@ kotlin {
// implementation("app.cash.paging:paging-runtime-uikit:3.3.0-alpha02-0.4.0")
// }
androidMain.dependencies {

implementation(libs.compose.ui.tooling.preview.android)
implementation(libs.androidx.activity.compose)
implementation(libs.ktor.client.okhttp)
Expand Down Expand Up @@ -200,9 +199,9 @@ compose.desktop {
buildTypes.release {
proguard {
version="7.4.0"
isEnabled=false
// isEnabled=true
configurationFiles.from("rules.pro")
obfuscate=true
// obfuscate=true
}
}
nativeDistributions {
Expand Down Expand Up @@ -237,4 +236,9 @@ dependencies {
// add("kspLinuxArm64","de.jensklingenberg.ktorfit:ktorfit-ksp:$ktorfitVersion")
// add("kspLinuxX64","de.jensklingenberg.ktorfit:ktorfit-ksp:$ktorfitVersion")

}

compose {
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.22")
kotlinCompilerPlugin.set("1.5.7")
}

0 comments on commit 1a097f3

Please sign in to comment.