Reputation: 4652
I want to protect my application from being copied by users from device to another device. I know that wont be possible because once the apk is installed any third party application may be able to copy or extract the apk. I mostly care about the private data of the application rather than the apk itself. So, my questions are :
1- Can I protect the apk from being copied to another device by the user ?
2- If user copied an application from device to another (e.g. via third party app or by bluetooth) will he/she be able to copy the private data as well ? If yes, can I protect that ?
Thanks in advance.
Upvotes: 2
Views: 638
Reputation: 4382
you can use google licence in your app
even if its copied from rooted device it wont work until its downloaded from playstore
second /data/data/<packagename>/
can be copied from rooted device
Upvotes: 0
Reputation: 3263
To answer briefly, AFAIK, No. Regarding the single questions:
Basically the difference it's not in having root or not, but in the ease of realization.
Upvotes: 1