I'm debugging restoring transactions and in my debug configuration everything works normally:

IE I call:

  [[SKPaymentQueue defaultQueue] restoreCompletedTransactions];

sometime later the queueCalls:

- (void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions

and sometime after that it calls:

- (void)paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue {

and everyone is happy.

BUT in my release configuration, I never see the call to updatedTransactions and so I never actually restore the purchases.

possibly related, after I attempt the restore and it doesn't work. I restart the application and I find that I don't get a response when I ask the store for a product list.

link

45% accept rate
1  
I believe this is a bug in storekit. – Carl Coryell-Martin Nov 16 '09 at 12:07
1  
Posting the differences in your debug/release configuration would help. Is it only the code signing and optimizations that are different, or are there other changes as well? – Asad R. Nov 10 '10 at 13:56
StoreKit is really quite terrible; I think that Carl is right. I hope you get things worked out, but I wouldn't be surprised if this issue persists for a while. – Jonathan Sterling Dec 3 '10 at 4:22
feedback

3 Answers

This error condition had nothing to do with the configuration. It is an intermittent bug in store kit.

link
feedback

Carl, as you said it seems to be an intermittent bug. However, I have also found out that it doesn't happen (or at least I haven't seen it yet) if I test it using the US Store. I've been using a UK test user and today it was failing miserably every single time. Created a US test user, and, after being switched to the US store automatically, it works perfectly again. It is not a fix, but it may be useful ;)

link
feedback

Do you add your payment object in the payment queue in this way?

SKPayment *payment = [SKPayment paymentWithProductIdentifier:"Your Product identifier"]; [[SKPaymentQueue defaultQueue] addPayment:payment];

If you are using this way,then the UpdatedTransactions is called right after adding the payment object in the payment queue.You dont have to call it explicitly.It is handeled by store kit.

link
feedback

Your Answer

 
or
required, but never shown

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