hello
yes my IAP is set to Active in the Google Play store console. Now I have managed to get my App beta version updated also, and I am trying to test my IAP.
I have now got past the “Google authentication error” thanks to Rob’s links which got me to reset my Google account for my device.
But now I have another issue, I press my “Buy” button, the IAP Badger starts and shows me that I am trying to connect to Google Play Store, but then it just sits there spinning forever and nothing happens until I give up and stop my App.
Again this may be an issue of the name of the IAP in my code using IAP badger and the name in the Google play store for my IAP.
in my code I have :
–Information about the product on the app stores
products = {
–unblockApp is the product identifier.
–Always use this identifier to talk to IAP Badger about the purchase.
buyTheApp = {
–A list of product names or identifiers specific to apple’s App Store or Google Play.
productNames = { apple=“xxx.UnblockApp”, google=“UnblockApp”, amazon=“UnblockApp”},
–The product type
productType = “non-consumable”,
Set for Google store as my IAP name,
Now in the Google Store I have my IAP set as
Name/ID.
UnblockApp (mudmate_unblock)
so my question is what do I need to set my App code to?
google=“UnblockApp”
OR
google=“mudmate_unblock”
regards
Bruce