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. | |||||
feedback
|
|
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. | |||||
feedback
|
|
Agree with samvermette, this is nuts that the testing works so closely to a real store. There must at least be a way to clear purchases in the sandbox. To make several purchases for the same user for the purpose of testing I added a Consumable type also. | |||
|
feedback
|