Last active
January 12, 2018 13:27
-
-
Save omegasoft7/ec2285ae5a873d6f780b to your computer and use it in GitHub Desktop.
Change Android Emulator Storage Size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Navigate to AVD | |
cd ~/.android/avd/Nexus5 | |
# Delete old image | |
#rm userdata-qemu.* | |
# Re-size the image | |
e2fsck -f userdata-qemu.img | |
resize2fs userdata.img 512M | |
# Fix problems | |
tune2fs -e continue userdata-qemu.img |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment