react-native-iap library:
1import { initConnection, getProducts, requestPurchase } from "react-native-iap";23await initConnection();45const products = await getProducts({ skus: ["premium_monthly"] });67async function buyPremium() {8 const result = await requestPurchase({ sku: "premium_monthly" });9 if (result.transactionId) {10 await verifyOnServer(result);11 }12}
Verification:
Platform setup: