Skip to content Skip to sidebar Skip to footer

How To Detect When An App Is Force Moved To Sd-card On Rooted Android

I have declared my App as internalonly, yet some rooted users move it to SD-Card. How can I detect at run-time that this has happened? I do not trust the information that packagema

Solution 1:

Have the application open /proc/self/maps and look for an entry that is an apk file and look at its path.

Why exactly are you concerned about this? Hopefully it is because of a functional reason, such as problems if the SD card is unavailable. Doing it for security purposes is of limited point on a rooted device.

If you detect it and complain, please have the error screen state why it is a problem. Just claiming "it's not allowed" or giving bogus reasons will only prompt people to figure out how to out-fake your fake-out detection and in the meantime leave you poor ratings in the market.

Post a Comment for "How To Detect When An App Is Force Moved To Sd-card On Rooted Android"