Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding Tester to TestFlight

If I add a tester to TestFlightApp.com They get a link to register their device. This then downloads a profile, which is called TestFlight Access. Not for my app.

What is this profile for and how does it relate to my app?

Also do I still need to add the tester's UDID to the apple developer portal, myself?

like image 649
Jonathan. Avatar asked Oct 21 '11 09:10

Jonathan.


1 Answers

That profile allows the service to gather the UDID of the testers device. This way the user never has to manually search that UDID and it is possible for the service to provide developers who invite users that information automatically.

Additionally, the installed web clip will authenticate the device against the service, so the apps that can be installed will be offered. These apps are found by comparing the UDID of the device against the provisioning profiles of all apps available.

So yes, you still need to add the UDID to the provisioning profile and compile your app against it.

The profile process is provided by Apple and well documented here: http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/iPhoneOTAConfiguration/Introduction/Introduction.html#//apple_ref/doc/uid/TP40009505

There are also other services who leverage that functionality for "easier" gathering of UDIDs and providing an easy way to let users download their beta apps.

like image 71
Kerni Avatar answered Sep 28 '22 07:09

Kerni