Posts Tagged “sdcard”
Enabling “Move to SD Card” Installation on Android
by ksetyadi on September 8, 2011
It’s quite simple. Open your AndroidManifest.xml and add this attribute in the <manifest> element. <manifest xmlns:android=”http://schemas.android.com/apk/res/android” android:installLocation=”auto” …> There are two values you can use: auto and preferExternal. Use auto to let the system decide which one to install your (…)