I'm using the IAP plugin on the android trying to get consumables working. I have done some digging around and it seems the IAP plugin isn't finished?This is what I mean, looking at some code:
CordovaAndroidStore.prototype.supportsConsumables = function ()
{
return false;
};[/code:1p2nv0an]
The phonegap/cordova plugin for android (com.mcm.plugins.androidinappbilling/www/inappbilling.js) seems to have the ability ready (again looking at the code)
[code:1p2nv0an]InAppBilling.prototype.consumePurchase = function (success, fail, productId) {
if (this.options.showLog) {
log('consumePurchase called!');
}
return cordova.exec(success, fail, "InAppBillingPlugin", "consumePurchase", [productId]);
};
[/code:1p2nv0an]
So why is this left out? Can someone please point me in the right direction on how to setup these events/actions in Construct 2? Or how to call these methods, etc.
Thanks in advance