IOS in app purchases not showing up in app store

I have a problem when my recently approved iOS app does not show any in-app purchases. My work on TestFlight works, and all in-app purchases were approved with my initial introduction. To grab the products that I launch:

let productIDs = // ... let customProductsRequest = SKProductsRequest(productIdentifiers: productIDs) customProductsRequest.delegate = self customProductsRequest.start() 

After approving an in-app purchase and my Ready to Sell app, do I need to do anything else to get my purchases to appear? My apps now live a little over an hour. I read the new TF assembly, and they work in this assembly.

+7
ios itunesconnect
source share
1 answer

I assume this is a distribution problem. I used to have apps in which it took more than six hours to buy apps. If everything works in the TestFlight assembly, it should be the same in production.

+8
source share

All Articles