Problem with my Android application installation in SD Card?
In one of my application my customer reported the problem with i开发者_如何学运维nstallation. He/She is unable to install my application in his/her Android mobile it's having problem to install application in SD card how to fix this problem?
Thanks,
Is your customer's device running Android 2.2 or above? If not, then you cannot install to SD.
Have you specified android:installLocation
in your manifest? If you do not, then by default, you can only install the app to internal memory regardless of Android version.
See Android dev - manifest for general info, and Android dev - installLocation for more detailed information on the installLocation
tag including how to maintain backwards compatibility.
精彩评论