Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter iOS build : 'GeneratedPluginRegistrant.h' file not found

I'm trying to do an iOS build of my flutter app.
It was originally developed as a web app, and that and the Android version build just fine.

I've needed to init the Podfile, and also add some variable to fix a "Sandbox is not in sync" issue.

Now I am facing the following error:

my-app/ios/Runner/Runner-Bridging-Header.h:1:9: 'GeneratedPluginRegistrant.h' file not found

Failed to emit precompiled header '/Users/me/Library/Developer/Xcode/DerivedData/Runner-bcjlnasdfassdfsdf/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_1LNASLDFKSJDFRW-clang_10GAW6SLDFKJPY.pch' for bridging header '/Users/me/my-app/ios/Runner/Runner-Bridging-Header.h'

If I open the Runner/Runner-Bridging-Header.h file, these are the contents:

#import "GeneratedPluginRegistrant.h"

And there is indeed no file called "GeneratedPluginRegistrant.h" anywhere in my project.

Where do I get the GeneratedPluginRegistrant.h file from?
How do I fix this issue?


Update :

I am also seeing this error :

Could not build the precompiled application for the device.

It appears that your application still contains the default signing identifier. Try replacing 'com.example' with your signing id in Xcode: open ios/Runner.xcworkspace

Error launching application on iPhone.


Update :

Changing the signing ID results in the following :

Could not build the precompiled application for the device. Swift Compiler Error (Xcode): Cannot find 'GeneratedPluginRegistrant' in scope /Users/me/my-app/ios/Runner/AppDelegate.swift:9:4

like image 473
Turkey Avatar asked Oct 27 '25 23:10

Turkey


1 Answers

Be sure to include the Runner-Bridging-Header.h file in the "Objective-C Bridging Header" section in your project file in XCode as described here

https://github.com/flutter/flutter/issues/24869#issuecomment-461865955

like image 182
stenlee Avatar answered Oct 29 '25 14:10

stenlee



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!