user1459976
user1459976

Reputation: 207

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?

Upvotes: 4

Views: 3308

Answers (2)

Swayam
Swayam

Reputation: 16354

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.

Upvotes: 4

Seva Alekseyev
Seva Alekseyev

Reputation: 61331

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.

Upvotes: 7

Related Questions