2
I am running an app that will have in-app purchases (hide advertising and new features), however I have some questions. The whole purchase process is already working, well hide the advertising and the new features are available to the user however I have two doubts.
- We imagine that the user formats the mobile phone (or changes Tlm), re-downloads my app, but this will still have advertising, the user to get the full app without paying again, just perform the purchase process again (and Google knows that he has already bought and does not charge anything) or you need to implement a button in the app to allow you to restore?
- The user makes the purchase in app, but then wants to recover his money (e.g. regret or disliked, etc.). In this case, how does the user get his money? I ask this because I have read somewhere that in in-app purchases the user cannot recover his money, this is true?
Is using the
Google Play In-app Billing
?– Wakim
Yes @Wakim, I’m using that Google library
– Kiotto
All purchases made are associated with the user, not the device. You just need to check the purchases made in your app to see if the user has previously purchased. Regarding the
refund
, it can be done and has to be done manually by you.– Wakim
How do I "check purchases made in your app to see if the user has previously purchased"? refund, found that in Urchase in app refund are manual between user and trader
– Kiotto
In item 2 of
Purchasing Items
(http://developer.android.com/google/play/billing/api.html#Purchase) it says that you can query it (it even has local cache, which allows you to query it more often).– Wakim
I don’t know who suspended this thread, but this has to do with programming. Thanks for the answers so far
– Kiotto
Okay, I’ll reopen the question based on penultimate item of this metaquestion. CC @Wakim
– bfavaretto