I have a problem with transferring the application to the SD card, I learned to allow the application to move to the SD card, I need to take care of two important things
- min SDK must be greater than or equal to 10
- set android: installLocation = "auto" in the android manifest, I found out that running this android: installLocation = "auto" will complete the task, than set it to External
My problem is that whenever I have an application less than 50 MB in size, this works fine. But if the size of the application exceeds it, I get the error "Not enough size on the SD card", I checked my SD card and I am sure that it has enough space to host the application! what could be the problem and offer me some possible solutions that will help me!
source
share