Reputation: 354
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
Reputation: 4733
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 snap.
Enjoy Programming!
Upvotes: 0
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
Reputation: 29
testflight
app Add device identifier for test flight
// In application:didFinishLaunchingWithOptions
[TestFlight setDeviceIdentifier:[[UIDevice currentDevice] uniqueIdentifier]];
[TestFlight takeOff:@"9e5f8b26-358f-4a0e-b9c2-186d932b1187"];
Upvotes: 1
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