Application cannot be transferred to SD card

I posted the following in AndroidManifest.xml, as described in the article :

<application android:name="MyApp" ... android:installLocation="auto">
    ...
</application>

<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8" />

but Move to SD cardremains disabled for my application (other installed applications on my phone can be successfully transferred to the SD card). What is wrong with him?

+5
source share
1 answer

Just tried it. You have a string inside the application label. I agreed that this would not work. The article shows this as part of a manifest tag, for example:

<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.nbt.keypad"
    android:versionCode="1"
    android:versionName="1.0"
    android:installLocation="auto">

Then it works for me.

+11
source

All Articles