Android Question how to protect the app

Roberto P.

Well-Known Member
Licensed User
Longtime User
Hi All,
I am looking for advice on how to protect the app with a security or activation code.

I want to protect APK from abusive installations.

thank you
 

JohnC

Expert
Licensed User
Longtime User
Once a user "buys" an app in the play store, the user can install that app on other devices (free of charge) that also have that same users "google" account registered on it.

If you want to prevent a user from installing your app on other devices that the user owns, then you will need to create your own cloud activation service which will generate a unique authorization code based on the specific devices unique device ID (see other threads on how to generate one) so that the code will only work to "activate" your app on one specific device.
 
Last edited:
Upvote 0

Peter Simpson

Expert
Licensed User
Longtime User
Hi All,
I am looking for advice on how to protect the app with a security or activation code.

I want to protect APK from abusive installations.

thank you

If you are talking about android users installing from websites except the play store, then you can start with implementing the licensing library.

You should also take a look at this great library too.

Enjoy...
 
Upvote 0
Top