Reputation: 773
Is it a good practice to build an application that have serial number for user to use that application? (Like most of desktop applications)
If so, what is the good way to save the state that user already purchased the application by having the serial number (stating that SharedPreferences and database file could be easily hacked)?
If not, what is the reason?
EDIT: My country (Indonesia) hasn't been able to sell paid application to Google Play (source), and I haven't registered to Google Play. How should I manage paid application by myself?
Many thanks :)
Upvotes: 1
Views: 1353
Reputation: 1815
This looks like a security question. For paid apps, I believe developers rely more on Google play store to take care, that they can't install/use the app that they haven't paid for. If anyone extracts apk the max he can do it is to install on more devices, which is fairly simple, if you have a rooted device.
Any developer generally is more concerned about having the application secured from reverse-engineering and theft of source code, rather than the installer. For making your application secure from reverse-engineering, you should be obfuscating application source before publishing the app to the play store.
Hope this helps.
Upvotes: 1