Marcel Schürmann
Marcel Schürmann
> > > The same thing happens to me, but before it did work. Now the window does not appear but I do get a receipt > > > >...
This is the same issue as [issue 1101](https://github.com/j3k0/cordova-plugin-purchase/issues/1101) for me at least.
> For PAID_SUBSCRIPTION you should register like: > > ``` > store.register({ > type: ProductType.PAID_SUBSCRIPTION, > id: "subscription_product_id", > platform: Platform.GOOGLE_PLAY, > }); > ``` > > "CdvPurchase" namespace does...
any ideas @j3k0 ? Any help is highly appreciated.
@idesignzone Thanks for the input. Yes, exactly like you mentioned (without the import command as I am using vanilla .js). `const { store, ProductType, Platform } = CdvPurchase;` I am...
Nice, it worked - I looked at your example @idesignzone thx a lot! I changed: `store.order(IAPProduct1.offers[0].id)` To: `iapProduct.getOffer().order();` I think that was the main change. I also improved the store.get()...