Hi,
I am working with am3358, android 4.2.
when downloading files through browser, it fails, and I check the permission of the folder emulated, it is like this,
root@android:/mnt/shell/emulated # ls -l
d--------- root root 2014-09-10 10:37 0
d--------- root root 2014-09-09 15:02 legacy
d--------- root root 2014-09-10 10:40 obb
No read/write permission is granted.
I chmod 777 * manually, then it is like this
root@android:/mnt/shell/emulated # ls -l
drwxrwxrwx root root 2014-09-10 10:37 0
drwxrwxrwx root root 2014-09-09 15:02 legacy
drwxrwxrwx root root 2014-09-10 10:40 obb
Now, download works, but the permission will restore to "d---------" again later.
How to make the default permission of folder /mnt/shell/emulated/0, /mnt/shell/emulated/legacy, /mnt/shell/emulated/obb to readable and writeable?
Thanks.