3

I have a project on Xcode with two targets (two apps:free version and premium version) that shares the same root bundle:

com.example.freeversion com.example.premiumversion

Is there the option of having one SSL Certificate for push notifications for the two apps?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
user1708257
  • 265
  • 1
  • 4
  • 6
  • This link might be useful [link][1] [1]: http://stackoverflow.com/questions/8188274/device-tokens-for-apple-push-notifications-provider – Abhishek Bedi May 16 '13 at 14:46

1 Answers1

2

As far as I'm aware this isn't possible as both versions in your example have different bundle identifiers:

com.example.freeversion 
com.example.premiumversion

The fact that the beginning of the ID is the same won't matter and Wildcard bundle identifiers (*) don't work with APNS.

So it looks like you'll need separate SSL certificates.

Robert
  • 5,278
  • 43
  • 65
  • 115