Closed louisdebaere closed 3 years ago
We are able to successfully upload our capacitor app to AppStore Connect if we use version 5.9.0
, indicating that a change with version 5.10.0
is causing the failure.
Hi @louisdebaere
Thank you for waiting for our response.
Yes, this is a bug from our side with version 5.10.0, but this will be fixed in the next release.
Until then, you can use this workaround:
In the Info.plist
inside Microblink.xcframework
add:
<key>CFBundleVersion</key>
<string>1</string>
Also, in the Info.plist
inside Microblink.framework
add:
<key>CFBundleShortVersionString</key>
<string>5.10.0</string>
<key>CFBundleVersion</key>
<string>1</string>
After the keys have been added, the issue should be resolved.
Let me know if the solution worked.
Regards, Milan
Hi, this problems still exists in version 5.11.0
Hi @ChoyWingLun
I just double-checked and the Bundle version and the Bundle Version string (short) is set to 5.11.0 in the Info.plist
located in the framework in the 5.11.0 version of the SDK.
Are you receiving the same exceptions mentioned above? Also, would you mind sharing how the Info.plist files look like in the framework in your project?
Regards, Milan
We get the following output when trying to upload our capacitor app with version
5.10
of theblinkid-capacitor
plugin.I noticed
CFBundleVersion
andCFBundleShortVersionString
are missing from different architecture slices fromMicroblink.framework/Info.plist
inside theMicroblink.xcframework
of thePPBlinkID
cocoapods dependency, suggesting this could caused by the latest version of the native plugin.Are the
Info.plist
files inside xcframeworks supposed to contain these keys (and is cocoapods supposed to generate them), or could they be missing from elsewhere? Has anyone else run into similar upload issues?