Home > Blockchain >  Fastlane failing with error "Cannot obtain the content provider public id. Please specify a pro
Fastlane failing with error "Cannot obtain the content provider public id. Please specify a pro

Time:10-21

I created an iOS test flight build using Fastlane, and I got this strange error, not sure why because it was working fine yesterday and now without any change in Fastlane configuration it gives me an error while uploading the build to the Apple App store.

errors wordings are as below

[21:50:01]: Transporter transfer failed.
[21:50:01]: 
[21:50:01]: Cannot obtain the content provider public id. Please specify a provider short name using the -asc_provider option.

[21:50:02]: Cannot obtain the content provider public id. Please specify a provider short name using the -asc_provider option.
Return status of iTunes Transporter was 1: Cannot obtain the content provider public id. Please specify a provider short name using the -asc_provider option.
The call to the iTMSTransporter completed with a non-zero exit status: 1. This indicates a failure.

[21:50:02]: Error uploading ipa file: 


[21:50:02]: fastlane finished with errors

[!] Error uploading ipa file:

Refer below logs enter image description here

CodePudding user response:

Please add the itc_provider along with the apple_id on the below line of code.

upload_to_testflight(skip_waiting_for_build_processing: true, apple_id: "APPLE_ID",itc_provider:"ID")

If you are on multiple App Store Connect teams, deliver needs a provider short name to know where to upload your binary. deliver will try to use the long name of the selected team to detect the provider short name. To override the detected value with an explicit one, use the itc_provider option.

Fastlane reference doc for itc_provider

Stackoverflow : To get provider short name(itc_provider)

CodePudding user response:

I had the same.

This comment from github helped me.

Add ENV variable to your deployment (or local machine

  • Related