[ad_1]
I’ve an app from FlutterFlow.
When constructing on my mac, the app can run on android emulator, nevertheless when I attempt to run the app on iOS emulator I get an error from Xcode:
Swift Compiler Error (Xcode): Utilizing bridging headers with module
interfaces is unsupportedUncategorized (Xcode): Command SwiftDriver emitted errors however didn’t
return a nonzero exit code to point failureError (Xcode): no such module ‘__ObjC’
/Customers/rene.alas/Library/Developer/Xcode/DerivedData/Runner-gmrgdwscnnmvmicqqjbydbrmmixp/Construct/Intermediates.noindex/Runner.construct/Debug-iphonesimulator/Runner.construct/Objects-normal/x86_64/Runner.swiftinterface:13:18Error (Xcode): didn’t confirm module interface of ‘Runner’ on account of
the errors above; the textual interface could also be damaged by undertaking
points or a compiler bug
/Customers/rene.alas/Library/Developer/Xcode/DerivedData/Runner-gmrgdwscnnmvmicqqjbydbrmmixp/Construct/Intermediates.noindex/Runner.construct/Debug-iphonesimulator/Runner.construct/Objects-normal/x86_64/Runner.swiftinterface:0:0Couldn’t construct the applying for the simulator. Error launching
utility on iPhone 15.
I attempted to verify this error on the internet an many sources:
Go to the ios/ folder
cd ios
Replace Cocoapods
sudo gem replace cocoapods
If the above does not work, attempt putting in it via homebrew
brew set up cocoapods
Make certain cocoapods up to date to 1.13.0 or newer model (if accessible)
pod --version
Delete the construct cache
flutter clear
Delete Podfile.lock
rm Podfile.lock
Delete the Pods/ folder as nicely
rm -rf Pods/
Set up the Flutter package deal dependencies
flutter pub get
Set up the iOS pod dependencies
pod set up
Replace your native pods
pod replace
I additionally tried different choices like, deleting the iOS folder from the Flutter undertaking after which working a
flutter create .
However nonetheless getting the identical error.
Sadly do not know any Swift to Hassle shoot the message inside xcode.
Any concepts?
[ad_2]