Reputation: 161
If we keep files(pdf, epub, jpeg etc) under application's data folder on run time, is it possible to access them via root user or any other hack by somebody else?
Upvotes: 4
Views: 4019
Reputation: 109237
Yes, it(internal storage) can accessible if your device is root. Then Anyone can access it.
Upvotes: 1
Reputation: 6993
Yes. As root you have unrestricted access to anything on the device. Even an applications runtime data, you can retrieve anything easily. An example would be to connect your device and retrieve a file by;
$ adb pull /path/to/remote/file localfile
Upvotes: 4