Waqas Mahmood
Waqas Mahmood

Reputation: 354

testflight the app token for this app was not detected

Recently I have added some devices on Developer portal and try to upload the new build on test flight but getting this error "the app token for this app was not detected"

Upvotes: 5

Views: 2569

Answers (4)

Niru Mukund Shah
Niru Mukund Shah

Reputation: 4733

  1. Go to Testflight.
  2. Go to Apps
  3. Go to your app name
  4. Click on the down-arrow beside your app name in the top-right corner.
  5. Go to edit info
  6. Check the Token appears there
  7. Compare the Token with your app token.

If they are same. Then wait for the cashes from Testflight. Otherwise correct those.

In case if you haven't integrated testflight sdk into your app.

Delete your app from testflight and upload it again.

To delete app checkout following snapenter image description here.

Enjoy Programming!

Upvotes: 0

Ben Packard
Ben Packard

Reputation: 26476

It appears that TestFlight are presenting this message either in error or to push their SDK.

I can confirm that if you 'Ignore and Continue' everything works as per usual. I have verified that beta testers are able to install and open the app.

Upvotes: 4

Karam
Karam

Reputation: 29

  1. Check you token from testflight app
  2. Add device identifier for test flight

    // In application:didFinishLaunchingWithOptions

    [TestFlight setDeviceIdentifier:[[UIDevice currentDevice] uniqueIdentifier]];

    [TestFlight takeOff:@"9e5f8b26-358f-4a0e-b9c2-186d932b1187"];

Upvotes: 1

theaob
theaob

Reputation: 179

Login to the Dashboard. Select the app you want to upload. Click on App Token on the left menu. You can get your app token from there. Then download the SDK. Follow SDK Installation Guide to integrate TestFlight to your app.

Upvotes: 0

Related Questions