I’m having an issue with my Flutter app, it builds ok but when moving it to Transporter to get it on App Store Connect I get a message:
Validation failed (409)
Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not support the minimum OS Version specified in the Info.plist. (ID: 44df568a-1707-444a-b31e-d69f9c2b8749)
I don’t know what is causing it. I am targeting a minimum iOS version 15 because of my dependencies.
These are:
url_launcher: ^6.3.0
path_provider: ^2.1.5
flutter_email_sender: ^7.0.0
email_validator: ^3.0.0
open_filex: ^4.7.0
plugin_platform_interface: ^2.1.8
firebase_storage: ^13.0.4
firebase_core: ^4.2.1
The AppFrameworkInfo.plist has a section:
MinimumOSVersion
12.0
I gather this file is generated, I haven’t tried changing it.
When setting up the app it was required to move a file into my project’s Flutter directory from my Flutter install. I think this was Flutter.xcframework.
I have tried a full clean of Flutter but the issue persists. App works fine on Android phones.
