From e5207f5bc548b435b97e1b17c5ac966fdb38353d Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 3 Apr 2023 10:26:03 +0600 Subject: [PATCH] Revert "Revert "trying to add native support"" This reverts commit c96cea8db0f2f0b96706b59c793a10a2d2a4515c. --- mppProjectWithSerialization.gradle | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/mppProjectWithSerialization.gradle b/mppProjectWithSerialization.gradle index 52c3c0096de..3e6c678a097 100644 --- a/mppProjectWithSerialization.gradle +++ b/mppProjectWithSerialization.gradle @@ -18,6 +18,9 @@ kotlin { android { publishAllLibraryVariants() } + linuxArm64() + linuxX64() + mingwX64() sourceSets { commonMain { @@ -50,6 +53,18 @@ kotlin { implementation libs.android.espresso } } + linuxArm64Test { + dependencies { + implementation kotlin('test-js') + implementation kotlin('test-junit') + } + } + mingwX64Test { + dependencies { + implementation kotlin('test-js') + implementation kotlin('test-junit') + } + } androidMain.dependsOn jvmMain }