Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to understand the testflight App distribution workflow

1. When a new tester wants to join my testing team - I ask them to create an account on test flight.

2. Next they need to give me their device UUID so that I can add that UUID to the Distribution profile. Question - What is the best way to get the UUID from the tester. I do not want them to email it to me or give me the UUID over the phone. Since they have the testflight account and the iPhone - Can they upload their device UUID from the iPhone to the testflight account so that I can see that tester JohnDoe has UUID xyz - If so how? What do they(The tester) need to run on the iPhone so that their UUID shows up when I (The App Developer) log into TestFlight.

3. When I (The App Developer) have the newly Added UUID - I need to update the Distribution Provisioning Profile on my Apple Provisioning Portal with the new UUID - Save the updated Profile and then upload it back to Testflight.

Question - Can this (adding the new UUID to a profile) be done via Testflight itself? - i.e. can Testflight update my Profile with a new UUID or can this only be done via the Apple provisioning portal and then be brought back into Testflight

There are similar questions but none answer exactly the two questions I am looking for.

share|improve this question

2 Answers

It's really much simpler:

  1. Create team
  2. Invite people by email
  3. When they signup, they automatically email you their device UDID

Here's what TestFlight FAQ says about it: How does it work?

Step 4 is to manually add device id's into Apple site, generate new provision files, download and install, rebuild (hopefully using jenkins or something similar) and upload a new build to TestFlight (did I mention jenkins :))

share|improve this answer
When you say rebuild - Do you mean create a new IPA in Xcode? My understanding is that just because you updated your profile with a new UUID - you do not have to create a new IPA - Is that correct? – OneGuyInDc Jan 24 at 14:15
You are right, guess I'm too used to "release often" process. You could just upload new provision file to TestFlight, which can then resign the old IPA file to include the new users. – JOM Jan 25 at 4:14
  1. Best way to get UUID - is copy it from testers TestFlight profile when he will register device for testing.

  2. You can update provisioning profile only at Developer Apple portal. But you can update provisioning profile for existing build by pressing Update Profile on build page.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.