Skip to content

Commit 611db8a

Browse files
committed
fix: corrected build errors on iOS
1 parent 5193cb9 commit 611db8a

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,3 +270,7 @@ Phase 0 details.
270270
## License
271271

272272
[Mozilla Public License 2.0](LICENSE)
273+
274+
## Copyright
275+
276+
© 2026 Thorsten Rinne. All rights reserved.

mobile/iosApp/iosApp/ContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ struct ContentView: View {
5656
private enum MetaLoaderHelper {
5757
static func create() -> MetaLoader {
5858
let koin = SharedModuleKt.koinApp.koin
59-
return koin.get(objCClass: MetaLoader.self, qualifier: nil, parameters: nil) as! MetaLoader
59+
return koin.get(qualifier: nil, parameters: nil) as! MetaLoader
6060
}
6161
}

mobile/iosApp/project.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,12 @@ targets:
2828
base:
2929
PRODUCT_BUNDLE_IDENTIFIER: app.myfaq.ios
3030
INFOPLIST_FILE: iosApp/Info.plist
31-
FRAMEWORK_SEARCH_PATHS:
32-
- "$(SRCROOT)/../shared/build/XCFrameworks/debug"
33-
- "$(SRCROOT)/../shared/build/XCFrameworks/release"
3431
OTHER_LDFLAGS:
35-
- "-framework"
36-
- "Shared"
37-
dependencies: []
32+
- "$(inherited)"
33+
- "-lsqlite3"
34+
dependencies:
35+
- framework: ../shared/build/XCFrameworks/debug/Shared.xcframework
36+
embed: true
3837
preBuildScripts:
3938
- name: "Build Shared KMP Framework"
4039
script: |

0 commit comments

Comments
 (0)