I have build the Android Chrome test shell (v27.0.1453.49) using instructions from the website. I need to dump some data to a file in SDCARD from chrome code, but hit the errno=13 everytime. I already tried using all paths /mnt/sdcard/, /sdcard, /storage/XX
My manifest contains the below already.
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
My target device is JellyBean 4.1.2.
Any advice?