Hi, I am using the following command to upload my .ipa to app store which has been working for years, but now, since the last month I get the following error:
xcrun iTMSTransporter -m upload -assetFile Util/myApp.ipa -u "${APPLE_USERNAME}" -p "${APPLE_PASSWORD}" -asc_provider "${APPLE_TEAM_ID}"
An error (-10814) occurred. The operation couldn’t be completed. (OSStatus error -10814.) (null)
Error: Process completed with exit code 1.
I also tried the following code with no luck:
xcrun altool --upload-app --type ios --file Util/myApp.ipa --username "${APPLE_USERNAME}" --password "${APPLE_PASSWORD}" --asc-provider "${APPLE_TEAM_ID}"
I also tried to notarize my app before just in case, which is done with no error (not sure if its necessary) with:
xcrun altool --notarize-app --primary-bundle-id "com.mydomain.myapp" --username="${APPLE_USERNAME}" --password "${APPLE_PASSWORD}" --file Util/MyApp.ipa
But still getting the uploading error, has anyone came across with this problem?