Com.android.ddmlib.SyncException: there is no place on the Android device

I have a large application when I run the emulator. I got this exception.

com.android.ddmlib.SyncException: No space left on device 

Can anyone tell how to solve this problem?

+4
source share
4 answers

Create a new emulator and give larger or unistall all applications in the old emulator.

0
source

Essentially, this means that you have a memory problem. This is most likely a leak.

First reboot your phone and make sure you still get the error. If so, you will need to start digging in your code and find out where you are flowing!

Need more help? Send the code!

Turn the DEBUG USB off and on again. It works for me. It seems to be something like a USB sync issue while debugging on my device.

Hope this helps!

0
source

Install a new emulator, then go to the advanced settings, find the memory and memory and increase the memory there.

0
source

Open AVD Manager Tools → AVD Manager. Select the "Edit" option of your emulator in the "Actions" column on the right side of AVD Manager. In the Virtual Device Configuration window that opens, find the "Show advanced settings" button and it will display the "Memory and memory" line. There "Internal memory" has several MB, so you need to increase it, like 2000, 3000 ... And much more. How to finish and start the emulator works fine again.

0
source

Source: https://habr.com/ru/post/1385089/


All Articles