Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GeneratedPluginRegistrant module "app_links" not found

Tags:

xcode

flutter

When I try to build my flutter app for my iPhone through xcode I get this error enter image description here

I've changed the iOS target to match in cocopods and In xcode but did not help, I've also tried reinstalling cocoapods incase It was the problem but to no help.

like image 633
Markus Lokander Avatar asked Sep 13 '25 21:09

Markus Lokander


1 Answers

I had the same issue for my flutter app. You'll have to install pod again for the project.

Go to iOS folder and pod install

Go back to main project folder.

flutter clean

flutter build ios

like image 156
Sambruce Sam Avatar answered Sep 16 '25 22:09

Sambruce Sam