You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and when invoking the createSwiftPackage gradle task the framework is created successfully and the ios app can be built without problems.
BUT as soon as we try to upload the app an error arise:
ERROR ITMS-90208: "Invalid Bundle. The bundle <AppName> Alpha.app/Frameworks/Common.framework does not support the minimum OS Version specified in the Info.plist
And inspecting the created Info.plist
the /app-ios/CommonFramework/Common.xcframework/ios-arm64/Common.framework/Info.plist file contains the following:
<key>MinimumOSVersion</key>
<string>9.0</string>
Which is a problem for us because the KMP module uses some native dependencies which compiled against min 13.0 version that's why we are setting the target version with the plugin.
As a workaround right now we are manually modifying the affected Info.plist file to match the version but it would be better if the plugin would respect the setting and automatically do that for us.
The text was updated successfully, but these errors were encountered:
Using this plugin in our project with the following setup:
and when invoking the
createSwiftPackage
gradle task the framework is created successfully and the ios app can be built without problems.BUT as soon as we try to upload the app an error arise:
And inspecting the created
Info.plist
the
/app-ios/CommonFramework/Common.xcframework/ios-arm64/Common.framework/Info.plist
file contains the following:Which is a problem for us because the KMP module uses some native dependencies which compiled against min 13.0 version that's why we are setting the target version with the plugin.
As a workaround right now we are manually modifying the affected
Info.plist
file to match the version but it would be better if the plugin would respect the setting and automatically do that for us.The text was updated successfully, but these errors were encountered: