You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are encountering an issue when building iOS project on arm64 simulator:
Undefined symbols for architecture arm64:
"OBJC_CLASS$_ResourcesModuleMRPlurals", referenced from:
in DesignSystem.o
"OBJC_CLASS$_ResourcesModuleMRStrings", referenced from:
in DesignSystem.o
"OBJC_CLASS$_ResourcesModuleResources", referenced from:
in DesignSystem.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
The library is added via xcframework and SPM
kotlin version 1.9.10, gradle version=8.1.4, moko version 0.24.4
The text was updated successfully, but these errors were encountered:
looks like you have some DesignSystem target that depends on kotlin multipaltform framework but not links with this framework.
i don't think that this issue related to library. i think you will see errors about ANY classes from multiplatform that you use in DesignSystem and you should fix DesignSystem target linking configuration.
We are encountering an issue when building iOS project on arm64 simulator:
Undefined symbols for architecture arm64:
"OBJC_CLASS$_ResourcesModuleMRPlurals", referenced from:
in DesignSystem.o
"OBJC_CLASS$_ResourcesModuleMRStrings", referenced from:
in DesignSystem.o
"OBJC_CLASS$_ResourcesModuleResources", referenced from:
in DesignSystem.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
The library is added via xcframework and SPM
kotlin version 1.9.10, gradle version=8.1.4, moko version 0.24.4
The text was updated successfully, but these errors were encountered: