I migrated my app to RC, however old subscribed users are having a sync problem.
Previously, I was using react-native-iap library for subscriptions and receipts validations in the client side.
if (
isSubscribedInOldSystem // not able to get this information
&& !isSubscribedInRevenueCat
) {
Purchases.syncPurchases();
}
Because of RC, I had to remove react-native-iap from my packages.json to prevent crashes and libraries incompatibilities.
I never stored any users subscriptions informations and I am now unable to get the isSubscribedInOldSystem to syncPurchases. I need your help. Is there any way to proceed?
Thank you in advance,
Paul