You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 26, 2026. It is now read-only.
Hi,
Scenario For Android
How can I fix or handle this case?
Below is my code fetch unfinished transactions
for (const purchase of purchases) { if (Platform.OS === 'android') { const androidPurchase = purchase as PurchaseAndroid; const body = { paymentProvider: IN_APP_PURCHASE_PROVIDER.GOOGLE_PLAY, purchaseToken: androidPurchase.purchaseToken, productId: androidPurchase.productId, receipt: '', transactionId: '', exTransactionId: androidPurchase.obfuscatedAccountIdAndroid, }; retryExclusiveContent(body); } else if (Platform.OS === 'ios') { const iosPurchase = purchase as PurchaseIOS; const body = { paymentProvider: IN_APP_PURCHASE_PROVIDER.APPLE, purchaseToken: iosPurchase.purchaseToken, productId: iosPurchase.productId, receipt: '', transactionId: iosPurchase.transactionId, exTransactionId: iosPurchase.appAccountToken, }; retryExclusiveContent(body); } finishTransactionPurchase(purchase); }