getting the write permission for sd card

10,935

Solution 1

Open the shell. Open your prompt, type:

adb shell

Then, remount your sdcard with rw permissions.

mount -o remount rw /sdcard

EDIT

sdcard without permissions:

enter image description here

Opening the shell:

enter image description here

change of permissions:

enter image description here

Solution 2

Make sure that you can created the SDCard for the Emulator by giving its size under

SD Card - Tab and also you have added SD Card Support to your device under Hardware - Tab

enter image description here

Share:
10,935
Suhail Gupta
Author by

Suhail Gupta

"There's nothing more permanent than a temporary hack." - Kyle Simpson "The strength of JavaScript is that you can do anything. The weakness is that you will." - Reg Braithwaite I am on internet Twitter @suhail3 E-mail [email protected]

Updated on June 13, 2022

Comments

  • Suhail Gupta
    Suhail Gupta almost 2 years

    I can't mount my sd card on the emulator and it gives me only a read option for the sd card as shown below :

    enter image description here

    How do i get the write permission on the virtual sd card so that i am able to push some media onto the sd card to test my applications ?