qonversion / react-native-sdk

React Native SDK for cross-platform in-app purchase and subscription infrastructure, revenue analytics, engagement automation, and integrations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Display and purchase in app purchases

elmcapp opened this issue · comments

Using react native are we able to display product (subscriptions).
Using react native are we able to purchase in app (in app purchases)

following the documentation I did not see any codes on how to do this. Only saw code for setup with react native but nothing to do the two task above, only swift and obj c.

Do you have plans to provide code to do this in react native and as well as a full working example for use review

Hi @elmcapp!

We've released version 2.0.0 with Product Center.

You can display products using something like this:

const products: Map<string, Product> = await Qonversion.products();

You can start making purchases with the purchase method as follows:

try {
  const permissions: Map<string, Permission> = await Qonversion.purchase('main');
} catch (e) {
  console.log(e);
}

Read more here