I'm converting a paid app to a free app with in-app purchase. On initial launch, I'd like to validate the original_application_version of the app and automatically enable the "paid" features for users who have already paid money for the app.
Since the in_app list is empty (which it should be for my use case), I get an error on validation and (as far I can tell) I don't have access to the purchasedProducts result.
Is it possible to ignore the EmptyError and gain access to the purchasedProducts so that I can access the original_application_version?
Hello,
I'm converting a paid app to a free app with in-app purchase. On initial launch, I'd like to validate the
original_application_version
of the app and automatically enable the "paid" features for users who have already paid money for the app.Since the
in_app
list is empty (which it should be for my use case), I get an error on validation and (as far I can tell) I don't have access to thepurchasedProducts
result.Is it possible to ignore the
EmptyError
and gain access to thepurchasedProducts
so that I can access theoriginal_application_version
?Thanks!