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"
4 回答
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.
- Check you token from
testflight
app Add device identifier for test flight
// In application:didFinishLaunchingWithOptions
[TestFlight setDeviceIdentifier:[[UIDevice currentDevice] uniqueIdentifier]];
[TestFlight takeOff:@"9e5f8b26-358f-4a0e-b9c2-186d932b1187"];
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.
- Go to Testflight.
- Go to Apps
- Go to your app name
- Click on the down-arrow beside your app name in the top-right corner.
- Go to edit info
- Check the Token appears there
- 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 snap.
Enjoy Programming!