To allow the system to install your application on the external storage, modify your manifest file to include the android:installLocation attribute in the <manifest> element, with a value of either "preferExternal" or "auto". For example:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="preferExternal" ... > If you declare "preferExternal", you request that your application be installed on the external storage. On Oct 12, 4:54 pm, pouya <[email protected]> wrote: > Hi friends; > as i read we can change applicatin Installing Location to SD card With > Android Tools via usb cable and Android USB driver package , Now I > wanna know is it possible to change the installing location > programmatically? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

