Post not yet marked as solved
Hi, We are working on a Xamarin project that needs to get the date of purchase of a Paid App that was posted in Appstore. I can see in iOS the receipt data is extracted from the bundle.
If i deletes the app, and then reinstalls it, is the receipt still in the bundle ? If not how to get the receipt?
Post not yet marked as solved
I have my paid app in AppStore. Now as per our requirement I want to convert a paid app as a yearly subscription.
For example, Users purchase the app at $50 and that will be their first-year subscription. Is that possible?
I notice both AppStore only have two options for downloading the app that is,
Users can download the app for free.
Users need to pay some amount to download the app, and users can use that app for a lifetime.
So there is no subscription option for downloading the app.
But AppStore provides subscription options for In-app purchases.
To achieve my requirement, I have a thought to implement the below idea, Once users paid and download the app, we will allow the user to use the app for one year. Then after one year, we will ask for the subscription(In-app purchase) when opening the app (without any free content in the app for the user), the user needs to pay to continue to use it. If payment is successful then I allow the user to login the app, if-else the user needs to exit the app.
Will the AppStore and PlayStore accept the above idea?
Is this possible? If not, please suggest a solution for us?
The main goal is users need to pay $50 per year.
Thanks in advance.
Post not yet marked as solved
Team,We are developing a phonegap app with inAppPurchase. We do the purchase using the plugin cordova-plugin-purchase.Reference URL: https://github.com/j3k0/cordova-plugin-purchaseOnce we request a product, the store gives all the details with owned state as "false" value.After purchasing, we get owned state as "true". We do not get any transaction details in the product details.We get transaction Ids frequently when we call the store.update method.Our questions are,1. Can we use the "owned" boolean value to check if the purchase has done or not?2. The loop is running infinitely if we call store.update method. Is this the process in Sandbox?