iOS Question Error when uploading using hosted server

db0070

Active Member
Licensed User
Longtime User
I am getting the following error when uploading to the hosted server. I am using B4i 8.8 and have tried both Java 14 and Java 19. I have cleaned the project, generated new profiles, made sure my updated version is incremented.

2025-02-02 07:04:59.473 Failed to request an upload. (
"Error Domain=ITunesConnectFoundationErrorDomain Code=-19239 \"CFBundleShortVersionString, \U201c3.0.0;\U201d, must be composed of one to three period-separated integers.\" UserInfo={NSLocalizedDescription=CFBundleShortVersionString, \U201c3.0.0;\U201d, must be composed of one to three period-separated integers.}",
"Error Domain=ITunesConnectFoundationErrorDomain Code=-19239 \"CFBundleVersion, \U201c3.0.0;\U201d, must be composed of one to three period-separated integers.\" UserInfo={NSLocalizedDescription=CFBundleVersion, \U201c3.0.0;\U201d, must be composed of one to three period-separated integers.}"
)
2025-02-02 07:04:59.473 Has version info conflict: NO, Previous version info: (null)
2025-02-02 07:04:59.474 *** Error: Exception caught. *** -[__NSArrayM insertObject:atIndex:]: object cannot be nil (-1010)
{
NSLocalizedDescription = "Exception caught.";
NSLocalizedFailureReason = "*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil";
}
 

db0070

Active Member
Licensed User
Longtime User
B4X:
'Code module
#Region  Project Attributes
          #CertificateFile: ios_distribution.cer
        #ProvisionFile: ios_distribution.mobileprovision

    #ApplicationLabel: Salat Calculator
    #Version: 3.0.0;
    'Orientation possible values: Portrait, LandscapeLeft, Landsc.apeRight and PortraitUpsideDown
    #iPhoneOrientations: Portrait
    #iPadOrientations: Portrait
#PlistExtra:<key>NSLocationWhenInUseUsageDescription</key><string>Used to display the current navigation data.</string>
#PlistExtra:<key>NSLocationUsageDescription</key><string>Used to display the current navigation data.</string>

#PlistExtra:<key>NSCameraUsageDescription</key><string>Taking a photo and attach to the task.</string>
#PlistExtra:<key>NSPhotoLibraryUsageDescription</key><string>Select your photo and attach to the task.</string>
  
      
#End Region
 
Upvote 0
Top