Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android emulator sd card "your SD card is full"

i edited an existing emulator to have an sd card of size 9mb and i added a boolean in the hardware section to support sd card. when i start the app it says "your SD card is full", what do?

like image 677
user1459976 Avatar asked Dec 20 '22 16:12

user1459976


2 Answers

First, try making the SD card larger - like, 100 MB - and restarting the emulator. The boolean in the hardware section, IIRC, triggers the preferred location for the application's APK - internal memory or SD card. An APK of 9MB is not that uncommon.

like image 171
Seva Alekseyev Avatar answered Jan 01 '23 20:01

Seva Alekseyev


The problem is that your SD card size has been declared too small. Consider the practicability of a user having a 9MB SD card when the whole world is talking in GBs.

Edit the emulator and increase the size, atleast to a hundred as depending upon your application, you might be needing a lot of space.

However, see this post regarding a known issue on SD card size.

like image 44
Swayam Avatar answered Jan 01 '23 20:01

Swayam