I’m facing delays launching my Flutter app on the iOS simulator. Here's the key error:
Error creating LLDB target... target architecture: arm64: not compatible with x86_64-apple-ios12.0.0-simulator...
Using an empty LLDB target instead but this can cause slow memory reads.
Also getting:
[FirebaseCore][I-COR000012] Could not locate configuration file: 'GoogleService-Info.plist'.
Details: macOS (M2), Dart Version: 3.7.2 Flutter Version: 3.29.2, Xcode Version 16.3 (16E140)
iOS simulator (x86_64) vs app built for arm64
Tried:
flutter clean, rebuilt
Removed DerivedData
Added GoogleService-Info.plist (still warning)
Questions:
How to fix arm64 vs x86_64 mismatch?
Is LLDB target issue slowing down launch?
Can I ignore the Firebase config warning?