I am encountering a problem whereas making an attempt to add my IPA to the App Retailer. The error message signifies an issue with the datatype of the cfBundleVersion attribute, stating that it is incorrect. Surprisingly, this was working fantastic till yesterday.
It is the error log:
2024-02-09 22:16:35.839 INFO: ContentDelivery model 2.141.101 (141101).
2024-02-09 22:16:35.852 INFO: Present Progress: Contacting Apple Providers…
2024-02-09 22:16:36.729 *** Error: Error [REDACTED]ing '/Customers/vagrant/deploy/[REDACTED] - Growth.ipa'.
2024-02-09 22:16:36.730 *** Error: An attribute within the offered entity has the incorrect sort Surprising json sort offered for attribute 'cfBundleVersion'. Anticipated a STRING however received INTEGER (ID: xxxxx) (409)
{
NSLocalizedDescription = "An attribute within the offered entity has the incorrect sort";
NSLocalizedFailureReason = "Surprising json sort offered for attribute 'cfBundleVersion'. Anticipated a STRING however received INTEGER (ID: xxxxx)";
"original_server_error" = {
code = "ENTITY_ERROR.ATTRIBUTE.TYPE";
element = "Surprising json sort offered for attribute 'cfBundleVersion'. Anticipated a STRING however received INTEGER";
id = "xxxxx",
supply = {
pointer = "/information/attributes/cfBundleVersion";
};
standing = 409;
title = "An attribute within the offered entity has the incorrect sort";
};
}
Importing IPA failed: exit standing 1
This is the related snippet from my Information.plist:
<key>CFBundleVersion</key>
<string>74</string>
I’ve constructed the iOS app utilizing React Native and deployed it through Bitrise.
Any insights into why this error may be occurring and how you can resolve it might be tremendously appreciated. Thanks!