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.

link|improve this question
feedback

3 Answers

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.

link|improve this answer
3  
This is beyond ridiculous. – samvermette Jan 31 at 21:20
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 ILSimSKTransactions. So to clear all purchases you can do:

[[NSUserDefaults standardUserDefaults] removeObjectForKey:@"ILSimSKTransactions"]

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 #define ILSimReplaceRealStoreKit 1 before doing #include <ILSimStoreKit.h>).

In source files where I need to access StoreKit, I include this header file:

#import <TargetConditionals.h>

#if TARGET_IPHONE_SIMULATOR
    #define kILSimAllowSimulatedStoreKit 1
    #define ILSimReplaceRealStoreKit 1
    #import <ILSimStoreKit.h>
#else
    #import <StoreKit/StoreKit.h>
#endif

This has the effect of using SimStoreKit when I run on the simulator and the real StoreKit when I run on the device.

link|improve this answer
couldn't get this to work. I'm getting a build error. I copied all the files in the zip into my project and replaced all the #import <StoreKit/StoreKit.h> with #define ILSimReplaceRealStoreKit 1 #import "ILSimStoreKit.h" – Jay Q. Jan 21 at 6:00
You just need the files that start with ILSimSK. The other stuff is for the demo app. Perhaps you should post a question with the exact error you're getting. "I'm getting a build error" doesn't say much. – Emile Cormier Jan 21 at 7:53
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.