Skip to content Skip to sidebar Skip to footer

Change /data/local Permissions

I installed an ICS rom onto my Incredible and discovered that I could no longer run applications through Eclipse to test them. I searched StackOverflow and found an answer to why m

Solution 1:

You must be root, open a terminal emulator and on the first line type

su

to give you admin rights and hit enter. On the second line type

chmod 755 /data/local

and you will have full Read/Write access. You can also use the Android SDK, but this way is much easier and quicker.

Post a Comment for "Change /data/local Permissions"