iOS Question upload app to itunes connect error

ronell

Well-Known Member
Licensed User
Longtime User
got this error when i try to upload the .IPA file in itunes connect, i already followed the tutorial here https://www.b4x.com/android/forum/t...e-certificates-provision-files.48539/#content and now im stuck
Uploading ipa file.
Submitting app (this step can take several minutes to complete).
Error: 2017-07-25 04:59:36.872 altool[639:90219782] *** Error: Errors uploading 'C:\Users\*******\Desktop\mocpay IOS\Objects\MOCPAY IOS.ipa': (
"Error Domain=ITunesConnectionOperationErrorDomain Code=1190 \"No suitable application records were found. Verify your bundle identifier 'net.grotopia.mocpay' is correct.\" UserInfo={NSLocalizedRecoverySuggestion=No suitable application records were found. Verify your bundle identifier 'net.grotopia.mocpay' is correct., NSLocalizedDescription=No suitable application records were found. Verify your bundle identifier 'net.grotopia.mocpay' is correct., NSLocalizedFailureReason=iTunes Store operation failed.}"
)
 
Last edited:

ronell

Well-Known Member
Licensed User
Longtime User
sorry for the late response

this is what i add in the code and the content of my keys folder
zzz.png


Have you compiled the app in release mode with a store provision profile?
i already compiled the app in release mode but not sure about the store provision profile

edit:
the user id and password in upload to itunes connect is the apple id and password ?
 
Last edited:
Upvote 0

sorex

Expert
Licensed User
Longtime User
you need to change the certificate and profile when you build your release version.

so create you distribution profile & certificate first.

use this to make things easier

B4X:
#If DEBUG
   #CertificateFile: ios_development.cer
   #ProvisionFile: development.mobileprovision
#Else
    #CertificateFile: ios_distribution.cer
    #ProvisionFile: distribution.mobileprovision  
#END IF

also make sure you use net.grotopia.mocpay everywhere. a typo somewhere will lead again to a reject.
 
Upvote 0
Top