Reputation: 11
I use testflight to administer beta versions of my app, problem is that the provioning profile only allows me to test on one device, do I have to keep creating a new certificate in keychain to change it? Or is there an easier way to either
a) change the device
b) add another device to an existing build
Upvotes: 0
Views: 79
Reputation: 7895
You cannot add a new device to an existing build. You have to:
Upvotes: 1
Reputation: 1666
Ideally flow is that each user(developer here) will have a keychain. Using that he will request a certificate. Now when you create a provisioning profile you have to select names of the developer whom you want to use that. So only those users will be able to debug application on device.
Now if you want to use one user's key chain and certificate for all the you have to export it from his key chain utility and import it in other. Same way you can export provisioning profile also. You can easily find methods for that on internet(I am avoiding this because it has nothing to do with programming).
Upvotes: 0