Post

Replies

Boosts

Views

Activity

Reply to Same UI Testing fail with iOS simulator 14.4 but success with iOS simulator 13.7
Apple introduced arm64 for simulators in addition to x86_64, but you cannot bundle two different arm64s in the same framework bundle (xxxx and *** have the same architectures (arm64) and can't be in the same fat output file). You need to either exclude the arm64 for the simulator or switch your project to use XCFrameworks (https://developer.apple.com/videos/play/wwdc2019/416/) so you can have arm64 for the simulator and devices
Apr ’21