Post

Replies

Boosts

Views

Activity

Reply to Could not find module 'XXXX' for target 'x86_64-apple-ios-simulator'; found: arm64, arm64-ios-simulator
In my case, I have added test target after the pod init, install etc.. And I saw, adding test target block in podfile solved my problem. Example; target 'SampleProject' do # Comment the next line if you don't want to use dynamic frameworks use_frameworks! # Pods for SampleProject target 'SampleProjectTests' do inherit! :search_paths # Pods for testing end end
Feb ’23
Reply to Could not find module for target 'x86_64-apple-ios-simulator'; found: arm64, armv7-apple-ios, arm64-apple-ios, arm, armv7
In my case, I have added test target after the pod init, install etc.. And I saw, adding test target block in podfile solved my problem. Example; target 'SampleProject' do # Comment the next line if you don't want to use dynamic frameworks use_frameworks! # Pods for SampleProject target 'SampleProjectTests' do inherit! :search_paths # Pods for testing end end
Feb ’23