Post

Replies

Boosts

Views

Activity

Reply to I cant install the app from app store or test flight.
After hours of playing around with App Store and deleting everything I could I manage to fix it on my Mac. Here is what I did. I created a new Apple ID, I signed out from the current one. Logged in with the new Apple ID in App Store / Mac Tried download again - still not working Restarting my Mac Downloading works! Sign out from the new Apple ID Log in with my Apple ID Remove the app downloaded with the new Apple Id Restart Mac Downloaded the app with my Apple ID without any problem - What changed was that this time it ask me for verification. Just for fun, I removed the app and re-download it again and it works now fine. This is super annoying but it fixed my problem. I hope it helps.
Sep ’25
Reply to Can't build to simulator on Apple Silicon
I spent 3 days on this issue beating my head against the wall. Today, I finally cracked it and understood the problem. I am working on a highly modular project with ~100 frameworks. When migrating from the X86_64 (Intel) architecture to arm64 (M1) I was always getting this error: Could not find module 'MyModule' for target 'x86_64-apple-ios-simulator'; found: arm64-apple-ios-simulator, at /my/path/ when building natively on M1. The reason is that the simulator runs natively on M1 but the simulated app runs still under Intel. That's why the x86_64 architecture was built in the first place. The two architectures are now beating each other as the simulator is arm64 while the simulated app is X86_64. Removing the arm64 architecture for the pods and project settings fixed the issue and I can build the project entirely on M1 now. Here are screenshots from the ActivityMonitor. AchieveMe is the app running in the simulator. To fix the problem for Cocoapods you can simply do: target.build_configurations.each do |config| config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64' end I am using XcodeGen and there it can simply be added under debug configuration as: YourSettings ... configs: Debug: EXCLUDED_ARCHS[sdk=iphonesimulator*]: arm64 Best of luck, I hope it helps. I can sleep in peace now.
Jan ’23