Reputation: 594
I use android platform about 1-2 years, and there are some apps which need to be root access. When i creating android app what give me this ROOT access ? Clearly to say,
if (haveRootAccess) doSomethingSpecial()
what can be doSomethingSpecial()
?
Upvotes: 0
Views: 287
Reputation: 42026
you can access /data/data/
folder of the device which helps to get data of each application installed in device and one can manipulate it.
you can able to run command like su
ping
ftp
etc with command terminal.
Can add additional commandfile /system/bin
folder.
Upvotes: 2