Does anyone have any ideas on how to reset and/or clear the IOS in-app purchase sandbox? I have an app that I'm testing with the sandbox, and I'd like to test new purchases without having to create a new test user every time I purchase something. If I don't do this, then I (of course) always get a message that the in-app purchase item has already been purchased when I click on my app's buy button.
|
You can't do this, as far as I know. The sandbox backend works like a real account-- once it's purchased, it's purchased (and thus you can test restore). You should do most of your development with the store stuff shimmed out, and then when you get to testing it for real, just expect to create several test accounts. |
|||||||
|
|
IMO there are 3 things you can do to make testing non-consumables bearable:
|
|||
|
|
|
Check out SimStoreKit. It's a "simulated version of the iPhone's StoreKit, for testing store UIs on the iPhone Simulator, or even on device without having to set up IAP in Connect." SimStoreKit stores purchases in the user defaults under the key
On the simulator, you can simply remove your app and install it again. I've successfully used SimStoreKit to debug my app's store front before testing with the sandbox. The beauty of this library is that it can be set-up to use the same class names as the real StoreKit framework (by doing In source files where I need to access StoreKit, I include this header file:
This has the effect of using SimStoreKit when I run on the simulator and the real StoreKit when I run on the device. |
|||||
|
|
I have 2 in app purchase items. 1 for production. and the other for testing. when I need to "clear" I delete the in app item and create new one (15 seconds in itunes connect and 1 second to change the product id in code) if i dont need to test "new user", i use the production in app item. |
||||
|
|
|
alternatively to create multiple test user solution you can create multiple test in app purchases in iTunes connect then you don't need to change a user account. |
|||
|
|