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
Hi, while examining the 'tealium_firebase.podspec' file in the 'tealium-flutter/remotecommands/tealium_firebase/ios' directory, I noticed the configuration s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386, arm64' }.
I am interested in understanding why these specific architectures (i386, arm64) are excluded for simulator builds. I am facing challenges with simulator builds in my project and suspect that these exclusions could be the cause.
Any explanation about this configuration and advice on how to handle simulator build issues due to these exclusions would be greatly appreciated.
Thank you in advance for your assistance.
The text was updated successfully, but these errors were encountered:
Hi @RubenNunez, thanks for opening this issue.
The reason for the two exclusion is very simple: flutter doesn't support i386 and CocoaPods used to not support arm64 for simulators.
So we will remove the arm64 exclusion soon to allow M1 and M2 users to easily build on the simulator.
At the moment as a workaround you can just change the project settings (and remove the "excluded archs" from the tealium-flutter pod settings) after the pod install or add a post install script in your podfile to do that automatically.
Hi, while examining the 'tealium_firebase.podspec' file in the 'tealium-flutter/remotecommands/tealium_firebase/ios' directory, I noticed the configuration
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386, arm64' }.
I am interested in understanding why these specific architectures (i386, arm64) are excluded for simulator builds. I am facing challenges with simulator builds in my project and suspect that these exclusions could be the cause.
Any explanation about this configuration and advice on how to handle simulator build issues due to these exclusions would be greatly appreciated.
Thank you in advance for your assistance.
The text was updated successfully, but these errors were encountered: