Unable to get google_mlkit_commons dependency resolved / iOS Local run failing due to minimum deployment version

Project Settings

I have a Flutterflow app with some external dependencies that I'm unable to successfully initiate Local Run for iOS. Specifically, Flutterflow complains that the external dependency (google_mlkit_commons) requires Minimum Deployment target of iOS 15.5.0, while my project has minimum deployment target of 14.0.0.

The problem is that no matter where I update the minimum deployment target, it still gets overwritten when I initiate Flutterflow's local run.

When I do a "pod install" from Terminal after making the changes above, I see no errors (the updates to the Podfile seem to be honored by Cocoapods). But, when I initiate a Local Run from Flutterflow, it overwrites everything back to 14.0.0 (the podfile, and the XCode configuration settings). and my Local Run fails. The podfile is completely overwritten, and all my changes are gone.

My question(s):

1/ What am I missing? Is there another place I need to update Minimum Deployment version?

2/ What is the mechanism by which Flutterflow seems to update the Podfile, and all the XCode locations that I'm updating minimum deployment target? Where is the 14.0.0 coming back from?

What have you tried so far?

1/ I have updated the Minimum Deployment target is XCode (in four places):

--AppFrameworkInfo (set MinimumOSVersion to 15.6.0)

-- Runner Project/Build Settings: iOS Deployment Target set to "iOS 15"

-- Runner Targets/General: Minimum Deployments iOS set to "15.6"

-- Runner Targets/Build Settings: iOS Deployment Target set to "iOS 15"

I have ready through the relevant parts of https://docs.flutter.dev/deployment/ios

2/ I have also updated the Podfile just as pub.dev suggested: https://pub.dev/packages/google_mlkit_text_recognition

3/ I have tried all the solutions mentioned here (nothing worked): https://stackoverflow.com/questions/77561631/please-specify-higher-minimum-deployment-target-dependency

Did you check FlutterFlow's Documentation for this topic?
Yes
2