From b08dd5a00dd441133c4e27ce5eac8df182f7bf4c Mon Sep 17 00:00:00 2001 From: KhooLy <73142442+KhooLy@users.noreply.github.com> Date: Mon, 13 Jul 2026 04:22:39 +0300 Subject: [PATCH] Fix Apple framework export and simulator architecture --- .github/workflows/apple.yml | 2 ++ shared/build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/apple.yml b/.github/workflows/apple.yml index ea220db..2577ab6 100644 --- a/.github/workflows/apple.yml +++ b/.github/workflows/apple.yml @@ -62,6 +62,7 @@ jobs: -scheme FluxaIos -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' + ARCHS=arm64 CODE_SIGNING_ALLOWED=NO build @@ -97,5 +98,6 @@ jobs: -scheme FluxaTvos -sdk appletvsimulator -destination 'generic/platform=tvOS Simulator' + ARCHS=arm64 CODE_SIGNING_ALLOWED=NO build diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index a44ce85..ae11059 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -22,7 +22,7 @@ kotlin { sourceSets { commonMain.dependencies { - implementation(project(":core")) + api(project(":core")) implementation(libs.coil3) implementation(libs.coil3.compose) implementation(libs.koin.core)