Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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"

like image 259
Waqas Mahmood Avatar asked Aug 16 '13 11:08

Waqas Mahmood


2 Answers

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.

like image 112
Ben Packard Avatar answered Oct 02 '22 07:10

Ben Packard


  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"];

like image 23
Karam Avatar answered Oct 02 '22 08:10

Karam