Skip to content

Commit

Permalink
Update SKIE to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcantoinefortier committed Jan 8, 2024
1 parent ac1b05d commit a099eef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
androidComposeCompiler = "1.5.6"
androidGradlePlugin = "8.2.0"
androidxActivityCompose = "1.8.1"
androidGradlePlugin = "8.2.1"
androidxActivityCompose = "1.8.2"
androidxAppcompat = "1.6.1"
androidxComposeBom = "2023.10.01"
androidxLifecycle = "2.6.2"
Expand All @@ -11,7 +11,7 @@ kotlin = "1.9.21"
kotlinxCoroutines = "1.7.3"
kotlinxSerialization = "1.6.2"
ktlint = "12.0.2"
skie = "0.5.6"
skie = "0.6.1"

[libraries]
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidxActivityCompose" }
Expand Down
8 changes: 8 additions & 0 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import co.touchlab.skie.configuration.DefaultArgumentInterop
import co.touchlab.skie.configuration.EnumInterop
import co.touchlab.skie.configuration.ExperimentalFeatures
import co.touchlab.skie.configuration.FlowInterop
import co.touchlab.skie.configuration.FunctionInterop
import co.touchlab.skie.configuration.SealedInterop
import co.touchlab.skie.configuration.SuppressSkieWarning
import co.touchlab.skie.configuration.SuspendInterop
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi

Expand Down Expand Up @@ -118,13 +120,19 @@ skie {
group {
DefaultArgumentInterop.Enabled(false)
EnumInterop.Enabled(false)
EnumInterop.LegacyCaseName(true)
ExperimentalFeatures.Enabled(false)
FlowInterop.Enabled(false)
FunctionInterop.FileScopeConversion.Enabled(false)
FunctionInterop.LegacyName(true)
SealedInterop.Enabled(false)
SealedInterop.ExportEntireHierarchy(false)
SuppressSkieWarning.NameCollision(false)
SuspendInterop.Enabled(false)
}
group("com.mirego.kmp.boilerplate.viewmodels") {
EnumInterop.Enabled(true)
EnumInterop.LegacyCaseName(false)
FlowInterop.Enabled(true)
SealedInterop.Enabled(true)
SuspendInterop.Enabled(true)
Expand Down

0 comments on commit a099eef

Please sign in to comment.