Reputation: 229
I have an app with 1 non-consumable in-app purchase to unlock extra functionalities. I implemented in-app purchased and it working in my sandbox environment. My question is, do I need receipt validation? It is mandatory or optional? Would my app be rejected if there's no receipt validation?
Upvotes: 3
Views: 788
Reputation: 7564
Apple has no way to detect if you have done receipt validation. Eg, with iOS7 and later, receipt validation can be done purely on the device. Validation is for your use to help assure you that the purchase is valid. If you don't care if the purchase is fraudulent or otherwise invalid, then don't do it.
Upvotes: 1