I am trying to follow along with this guide: https://docs.coronalabs.com/daily/guide/monetization/IAP/index.html#purchasing-products
one thing that I am having trouble finding an answer for is how to figure out what I’m supposed to put under the “product list”
The code I have is as follows
appleProductList = { "com.ninepoundgames.icecreamtruck.ICE\_2X\_REV" }
I’ll explain where I got this
In the guide it constantly uses this as its example
"com.domainname.ExampleInAppPurchase.ExampleConsumableItem"
So I figured id use the reverse domain that I set up for my app within iTunes connect
com.ninepoundgames.icecreamtruck
that took the place of
com.domainname.ExampleInAppPurchase
that left
ExampleConsumableItem
I went into the IAP section for my app on iTunes connect and pulled the ID that I had set up for the specific IAP which happened to be
ICE_X2_REV
I am wondering if I constructed the string for the apple product list correctly.
