How to work with updating (not updating) an application in iOS?

This is the first time I am trying to create an application in which money is involved. I will give premium features to some users when it pays for the Apple store.

I heard something about that in the App Purchase, that by implementing it, we can take money from users.

My main question is: what should be the best procedure for updating an application loaded with new features (for example, we get all the permissions in games.)?

Should we include some file upload after a money transaction or are we showing it from an existing application.

My concern is the best approach to take? If I am thinking in the wrong direction, then please help me with the right path for this kind of scenario.

Thanks in advance.

+3
source share
1 answer

In the case of an “update” or an “unlock” based on an in-app purchase, it’s best to provide the full application to the user and block the functions while the application is in demo mode. Thus, you will have to check each time whether the application is updated when the user tries to use the premium function.

Attracting some download after the user makes a purchase will be tedious to implement, but it is also based on what you are trying to provide with the purchase.

Read more about in-app purchases here .

0
source

All Articles