Currently, I am utilizing the cordova in-app-purchase plugin for my application. However, I am encountering an error that reads "ERROR TypeError: Cannot read property 'getProducts' of undefined"
The .ts file appears as follows:
window['plugins'].inAppPurchase.getProducts(productIds).then(products => {
console.log('got products: ', JSON.stringify(products));
self.buyProducts(products[0].productId);
});
I am stuck at this point and would greatly appreciate any assistance. Thank you in advance.