views:

322

answers:

2

I've got an iPhone app that uses push notifications, which means that I can't use a wildcard in the bundle identifier of my provisioning profile. This means that I can't use a team provisioning profile, which makes things difficult when several developers are committing code to Subversion.

When I commit my code, I also commit my individual provisioning profile settings in the Xcode project. Then when other developers do an svn update, they have to change the profile settings to fit their needs, and it's a never ending battle.

Is there a different solution other than a team provisioning profile that uses wildcards in the bundle identifier?

Thanks!

A: 

Edit: You could add every device, then make a new provisioning profile that works for all devices. Not sure if that's what you want, but it could work.

NSArray
Devices don't play a role in my problem. I'm just talking about development within Xcode.
A: 

In the provisioning portal, go to Provisioning and Development. Create a new profile and add the devices of your developers to it. If your developers only use the simulator, then just add your own device to it. Email the provisioning profile to your developers and all should work well.

Sjors Provoost