My problem is: my app doesn’t install sd card. But I write this code ;
android:installLocation="auto"
I write this code, the app when I install .apk from bluetooth. It is possible to move sd card but when I install apk from android market it is not possible to move sd card. Why???
Are you using Android Market’s “copy protection” feature? If so, then it will override android:installLocation and only allow the user to install it on internal storage.
Also, if you prefer that your app be installed on an external device, you should use preferExternal rather than auto.
For further reference:
http://developer.android.com/guide/appendix/install-location.html