I find it easier to edit the files using an FTP server app on android and filezilla on my laptop to communicate. Others may find it easier using the file manager apps.
- Navigate to /system/etc/permissions/platform.xml (Do remember to backup “platform.xml” in safe place)
- Open Platform.xml by right clicking on the file in filezilla and selecting option open/edit.
- Find android.permission.WRITE_EXTERNAL_STORAGE and android.permission.WRITE_MEDIA_STORAGE lines
- change lines to show the following.
<group gid=”sdcard_r” />
<group gid=”sdcard_rw” />
<group gid=”media_rw” />
</permission>
<permission name=”android.permission.WRITE_MEDIA_STORAGE” >
<group gid=”sdcard_rw” />
<group gid=”media_rw” />
</permission>
Comment