I am encountering a problem whereas trying 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. Unusually, 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 Companies…
2024-02-09 22:16:36.729 *** Error: Error [REDACTED]ing '/Customers/vagrant/deploy/[REDACTED] - Improvement.ipa'.
2024-02-09 22:16:36.730 *** Error: An attribute within the offered entity has the flawed kind Sudden json kind offered for attribute 'cfBundleVersion'. Anticipated a STRING however obtained INTEGER (ID: xxxxx) (409)
{
NSLocalizedDescription = "An attribute within the offered entity has the flawed kind";
NSLocalizedFailureReason = "Sudden json kind offered for attribute 'cfBundleVersion'. Anticipated a STRING however obtained INTEGER (ID: xxxxx)";
"original_server_error" = {
code = "ENTITY_ERROR.ATTRIBUTE.TYPE";
element = "Sudden json kind offered for attribute 'cfBundleVersion'. Anticipated a STRING however obtained INTEGER";
id = "xxxxx",
supply = {
pointer = "/knowledge/attributes/cfBundleVersion";
};
standing = 409;
title = "An attribute within the offered entity has the flawed kind";
};
}
Importing IPA failed: exit standing 1
Here 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 could be occurring and find out how to resolve it could be significantly appreciated. Thanks!