Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I uploaded an apk file to a web server and attempted to access the link from the browser on the phone. When I attempt to download from that link I receive an error message that reads "An SD card is required to download." I do not have an SD card installed, but the internal memory is not full, so I would expect the app to install to internal memory.

The obvious solution is to install an SD Card. Putting an SD card in the device does allow the app to install. So, the question is why is this necessary?

Nowhere in my app do I specify that this needs to be installed on an SD Card. I've tried leaving the installLocation blank and setting it to "auto" and "internalOnly". I've scoured the forums and not found a reason for this.

share|improve this question

2 Answers

up vote 3 down vote accepted

It's not about where the application is installed, but rather where the downloaded .apk file is stored. Before the application can be installed, the package has to be downloaded and stored somewhere first, typically on the SD card. Once the downloaded file is stored, it can then be installed, but with no SD card, the browser has nowhere to put the file.

share|improve this answer
So there's absolutely no way to get around this besides installing an SD card? – Andrew May 22 '12 at 18:50

When downloading from the browser, the APK, or any downloaded file, needs to be stored on the SD card. Downloading from the Market, however, can handle downloading apps without an APK. If you have country restrictions, perhaps alternative markets like SlideME can do the same thing.

share|improve this answer
You said "can handle downloading apps without an APK". Did you mean without and SD Card? or did you mean APK? – Michael Levy Sep 21 '11 at 18:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.