From 123b620f6eef452d18d7e72752fa8d12ced4176b Mon Sep 17 00:00:00 2001 From: alexander-gorshenev Date: Sat, 5 Mar 2022 04:54:11 +0300 Subject: [PATCH] Moved kotlin native to experimental mm (#1910) --- compose/frameworks/support | 2 +- compose/gradle.properties | 4 ++++ experimental/examples/falling-balls-mpp/gradle.properties | 2 ++ experimental/examples/minesweeper/gradle.properties | 2 ++ 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/compose/frameworks/support b/compose/frameworks/support index 3fbd775007..8b82f5072c 160000 --- a/compose/frameworks/support +++ b/compose/frameworks/support @@ -1 +1 @@ -Subproject commit 3fbd775007164912b34a1d59a923ad3387028b97 +Subproject commit 8b82f5072c90df26576b5365a1bb465d8af49167 diff --git a/compose/gradle.properties b/compose/gradle.properties index 9043c30b2b..899da2a10d 100644 --- a/compose/gradle.properties +++ b/compose/gradle.properties @@ -7,3 +7,7 @@ org.gradle.vfs.watch=true androidx.compose.multiplatformEnabled=true jetbrains.compose.jsCompilerTestsEnabled=true androidx.validateProjectStructure=false +# Enable kotlin/native experimental memory model +kotlin.native.binary.memoryModel=experimental +# Caching plays bad with skiko libraries +kotlin.native.cacheKind=none diff --git a/experimental/examples/falling-balls-mpp/gradle.properties b/experimental/examples/falling-balls-mpp/gradle.properties index 880c8e3907..d0c69fe7c3 100644 --- a/experimental/examples/falling-balls-mpp/gradle.properties +++ b/experimental/examples/falling-balls-mpp/gradle.properties @@ -6,3 +6,5 @@ kotlin.native.cacheKind=none kotlin.native.useEmbeddableCompilerJar=true kotlin.native.enableDependencyPropagation=false kotlin.mpp.enableGranularSourceSetsMetadata=true +# Enable kotlin/native experimental memory model +kotlin.native.binary.memoryModel=experimental diff --git a/experimental/examples/minesweeper/gradle.properties b/experimental/examples/minesweeper/gradle.properties index 05c36706e3..8a3a400651 100644 --- a/experimental/examples/minesweeper/gradle.properties +++ b/experimental/examples/minesweeper/gradle.properties @@ -3,3 +3,5 @@ kotlin.native.useEmbeddableCompilerJar=true org.gradle.jvmargs=-Xmx3g kotlin.mpp.enableGranularSourceSetsMetadata=true kotlin.native.enableDependencyPropagation=false +# Enable kotlin/native experimental memory model +kotlin.native.binary.memoryModel=experimental