My in app purchase project working perfectly now, but I need to test purchasing and when once purchase is successfully done it cannot be undone? How can I test in app purchasing and upgrading my app to full version when it can be done just one time?
|
feedback
|
| |||
|
feedback
|
|
If you delete your app and reinstall it, you can repurchase products. It follows the same code flow and nearly exactly the same user experience (there is a dialog letting you know that you can repurchase for free the second time). Also you can create more test users in iTunes Connect to be sure that you are doing completely clean testing. I've spent several weeks deleting and reinstalling my app many times per day to ensure that my storekit implementation works just like I want it too. | |||
|
feedback
|
|
All you have to do is delete your app from the device. This will wipe out any NSUserDefaults where you may have stored in-app purchase details. Once you run your app again, make the purchase one more time, and Store Kit will tell you this: "You've already purchased this. Tap OK to download it again for free" Once you tap OK, you go through the same sequence of events you did when you made your first in-app purchase, so you can test again and again. | |||
|
feedback
|
|
Use unit tests on your app, with false data, until you're satisfied. (create test code - for each module you use) I think I'll need more description of your process to have a better answer. | |||
feedback
|