I'm going crazy testing my app for inApp purchase. I cannot get any valid product.

I'll try to make some questions here, hope someone could answer.

  1. Do i have to upload binary of my test app on itunes connect? My app has never been published in appstore, it's a brand new app just in test.

  2. If i have to upload binary, I upload a Distribution signed binary. NOW, do i have to use the same binary (Distribution signed) on my tests? Or i can use a developer binary?

  3. I've checked many and many times all critical and known problems like boundle ID, taxes info, Clear for sale checkbox and all these things. They are all ok.

  4. After adding an iAP product, it is marked "Waiting for Review", is this correct or I should wait it change state before I can see it as valid?

Thanks to all.

Regards.

link|improve this question
feedback

6 Answers

You do not have to upload a binary. You can set up your app in iTunes Connect, and then set up your products associated with it. The "Waiting For Review" on your products will stay waiting for review until you submit a binary and submit the app and it gets approved. You can still test, however, even with your products "Waiting For Review". There is (IIRC) a transitional state which you as developer must mark your products as approved after you have tested them.

Note: Once you create the app in iTunes Connect, you have 90 days to submit a binary before they take your app name away from you.

Note 2: When testing with your debug build before submission, you have to use the development sandbox servers. See the IAP documentation for more info.

link|improve this answer
1  
So based on what you say and what i did, i should have the product list working, unfortunately does not work. Could be possibile I have to wait hours or days before the products become available for testing? I've read this on many other forums. – user720784 Apr 22 '11 at 17:27
1  
Do I only need to logout from itunes store account to use sandbox servers? This is what I understand from IAP documentation. – user720784 Apr 22 '11 at 17:37
with the new SDK (beta) because of the iCloud stuff its very difficult to actually log your iPhone out of your iTunes account. But now the storekit is supported on the simulator!! try it ;) unless you are not in the dev program of course... you ought try my suggestion, I'm pretty confident your problem is in your provisioning profile – Jef Jul 12 '11 at 7:29
I really hate Apple for dev. The things are just too complicated and just does not work as the documentation describes. Unnecessarily complex. – Felipe Micaroni Lalli Apr 16 at 23:58
feedback

There is no need what-so-ever to submit the application binary before testing in-app-purchase in SANDBOX environment.

The In-App-Purchase product'll 've state READY TO SUBMIT.enter image description here

link|improve this answer
It did not work for me. – Felipe Micaroni Lalli Apr 16 at 23:55
feedback

I spent waay too much time on this exact problem too.. you do not need to upload a binary to get the in app purchase testing, what that means in iTunes connect there is that you cant add additional products to an existing product on the iTunes shelves. For example if your app is live and at version 1.0, and v1.0 was submitted with only one in app purchase connected with it, there can never be a 2nd in app product for v1.0, to add a 2nd (or many more) in app products you need to resubmit, go up to 1.01 or whatever. The key thing that I was overlooking, and I hope this helps, is YOU MUST BE USING A PROVISIONING PROFILE FOR THAT IS MADE FOR THE APP IN QUESTION, not the generic profile that xCode's little helper wizard thing just builds stuff on by default. Try that

link|improve this answer
++ and make sure you have your app ID filled out correctly in your appInfo.plist too huh – Jef Jul 9 '11 at 21:42
feedback

Don't bother with all of the voodoo suggestions surrounding in-app purchases, the official Apple Technical Note TN2259 describes all the steps in detail... and it works.

link|improve this answer
feedback

Setting up In-App purchases for the first time is a huge headache. I believe that you do need to submit a binary in iTunes Connect. Just submit it and then "developer reject" it right away. If it doesn't work then, wait a few hours or a day and then see if it works. Also, make sure that you check off "Cleared for Sale" for your In-App purchase in iTunes Connect.

EDIT: You should submit a distribution binary but may continue to test with your development binary.

link|improve this answer
1  
This does not sound right. – Till Apr 22 '11 at 16:59
So please tell me what's right if you know – user720784 Apr 22 '11 at 17:08
Submitting and then rejecting just does not make any sense. – Till Apr 22 '11 at 17:30
This is the tutorial I used and he says "You must submit a binary for your application in order to successfully test in-app purchases." It worked for me, so it should work for you troybrant.net/blog/2010/01/in-app-purchases-a-full-walkthrough – edc1591 Apr 22 '11 at 18:26
I already followed this tutorial step by step. No luck... – user720784 Apr 22 '11 at 18:54
show 2 more comments
feedback

i had the same problem. for me helped 2 things in combination:

  1. remove "rejected" status via uploading the binaries again
  2. don't use a jailbroken device

But in FAQ 6 are some more reasons for this problem listed:

  • You did not complete all the financial requirements (see the "Contracts, Tax, and Banking Information" section of this document).

  • You did not use an explicit App ID.

  • You did not use the Provisioning Profile associated with your explicit App ID.

  • You did not use the correct product identifier in your code. See Technical Q&A, QA1329, 'In App Purchase Product Identifiers' for more information about product identifiers.
  • You did not clear your In App Purchase products for sale in iTunes Connect.
  • You might have modified your products, but these changes are not yet available to all the App Store servers.
  • If you or App Review rejected your most recent binary in iTunes Connect.

hope this will help some more of you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown