diff --git a/channel-event-bus/build.gradle.kts b/channel-event-bus/build.gradle.kts index 3367c18..c5d6903 100644 --- a/channel-event-bus/build.gradle.kts +++ b/channel-event-bus/build.gradle.kts @@ -38,12 +38,25 @@ kotlin { nodejs() } + // According to https://kotlinlang.org/docs/native-target-support.html + // Tier 1: macosX64, macosArm64, iosSimulatorArm64, iosX64 + // Tier 2: linuxX64, linuxArm64, + // watchosSimulatorArm64, watchosX64, watchosArm32, watchosArm64, + // tvosSimulatorArm64, tvosX64, tvosArm64, + // iosArm64 + // Tier 3: androidNativeArm32, androidNativeArm64, androidNativeX86, androidNativeX64, + // mingwX64, + // watchosDeviceArm64 + iosArm64() iosX64() iosSimulatorArm64() macosX64() macosArm64() + mingwX64() + linuxX64() + linuxArm64() tvosX64() tvosSimulatorArm64() @@ -53,6 +66,12 @@ kotlin { watchosArm64() watchosX64() watchosSimulatorArm64() + watchosDeviceArm64() + + androidNativeArm32() + androidNativeArm64() + androidNativeX86() + androidNativeX64() sourceSets { commonMain {