The emulator file system is ext4. You can re-size the
userdata.img
using standard Linux tools. Try this only when you are facing problem increasing AVD size using Android-SDK GUI.# Navigate to AVD
cd ~/.android/avd/{name-of-avd}
# Delete old image
rm userdata-qemu.*
# Re-size the image
resize2fs userdata.img 1512M
# Start the emulator and enjoy#BePatient it may take some time to create new partition
emulator {name-of-avd}
OR
e2fsck -f userdata-qemu.img
resize2fs userdata-qemu.img 512M
Comments
Post a Comment