Est-ce que l'ajout en app achats à une application affecter les utilisateurs qui ont déjà acheté ce?

StackOverflow https://stackoverflow.com/questions/7811350

Question

J'ai une application que je suis sur le point d'ajouter des achats dans l'application.

Ma question est la suivante. L'application utilise un certificat pour le développement et la distribution qui est utilisé par plusieurs autres applications de mines, des applications qui ne sont pas en application l'achat.

Comme j'ajoute en application acheter maintenant, je vais devoir changer ID APP de cette application afin que je puisse créer un profil d'approvisionnement pour les achats dans l'application. ce changement aura une incidence sur l'application de quelque façon? Je veux dire, ce que je serai en mesure de télécharger le nouveau binaire avec un profil provisoire différent généré avec un autre AppID? Est-ce que les utilisateurs anciens pourrez mettre à jour?

Était-ce utile?

La solution

Your app must have the same bundle ID. It's the string in your Info.plist file. If that's left unchanged, users will have no problem upgrading.

If I understood your question correctly, you had a wildcard distribution provisioning profile when you first submitted this app? As long as the new provisioning profile still matches the bundle ID in Info.plist, it's ok.

Autres conseils

You may have created an App ID before we had in-app purchase or push-notification service. Maybe you didn't think you needed those and wanted to create a suite of similar apps. Now you want those features.

Say you had an App ID of:

com.mycompany.appsuite.*

And your app's bundle ID (in the plist and elsewhere) is:

com.mycompany.appsuite.mycoolapp

In order to be able to do change the App ID for in-app purchase or push-notification, then you should go to the developer.apple.com Provisioning Portal add a new App ID of:

com.mycompany.appsuite.mycoolapp

This App ID matches your Bundle ID, so your users will not have to repurchase your app, and it will also qualify your app for in-app or push-notification.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top