From f7159090ff840d697fd44e4bfb01dfa7948a15e8 Mon Sep 17 00:00:00 2001 From: Oleksandr Karpovich Date: Wed, 25 Jan 2023 14:07:27 +0100 Subject: [PATCH] Revert #2662 There is no coroutines for linuxArm64 yet --- compose/buildSrc/src/main/kotlin/ComposePlatforms.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose/buildSrc/src/main/kotlin/ComposePlatforms.kt b/compose/buildSrc/src/main/kotlin/ComposePlatforms.kt index fbad3ebf3f..4bfaed9a97 100644 --- a/compose/buildSrc/src/main/kotlin/ComposePlatforms.kt +++ b/compose/buildSrc/src/main/kotlin/ComposePlatforms.kt @@ -25,7 +25,7 @@ enum class ComposePlatforms(vararg val alternativeNames: String) { WatchosX64("WatchOs"), WatchosSimulatorArm64("WatchOs"), LinuxX64("Linux"), - LinuxArm64("Linux"), + // LinuxArm64("Linux"), // No coroutines for linuxArm64 yet MingwX64("Mingw"), ; @@ -57,7 +57,7 @@ enum class ComposePlatforms(vararg val alternativeNames: String) { ComposePlatforms.WatchosX64, ComposePlatforms.WatchosSimulatorArm64, ComposePlatforms.LinuxX64, - ComposePlatforms.LinuxArm64, + // ComposePlatforms.LinuxArm64, // No coroutines for linuxArm64 yet ComposePlatforms.MingwX64, )