It's the first time I am developing an ios app and my first experience with appstore. I want to implement a monthly subscription in my app
I tried the code here:
I get a red line in the logs saying: Product not found: all_access_one_month
it seems to come after this line
B4X:
istore.RequestProductsInformation(ProdIds)
I have a single subscription in the app (all_access_one_month) and it is selected in the screen with the app build where it says 'Add for review'
I do not understand if I have to send the app for review before testing subscriptions or if there are other requirements. What am I missing? The information about this is confusing to say the least, although in app purchases is a crucial aspect of development.
I made a in app purchase (non consumable) named premium
B4X:
Dim l As List
l.Initialize
l.Add("premium")
store.RequestProductsInformation(l)
But I get the same response when I start the app with b4i bridge : Product not found: premium
I don't know what i am doing wrong. The app is not reviewed yet.
In this tutorial I will show you how to create subscriptions in the Apple Developer console, how to link them with revenuecat, how to integrate the B4X-RevenueCat SDK in the app and how to present the whole thing to the customer in the app with AS_Settings and AS_PremiumSubscription. The...
Yes, I realized I have to use a sandbox account, I created it, I logged out of my apple account on the iphone, I went to settings->apple account and I logged in with the sandbox account. Still get the same message: product not found when I use store.RequestProductsInformation.
Now I am in the process of completing all the legal forms with apple (trader contact information etc) thinking that might be the problem.