2011-01-25 155 views
5

article描述我已經把下面的AndroidManifest.xml應用程序不能移動到SD卡

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

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

Move to SD card被剩下我的應用程序禁用(我的手機上的其他安裝的應用程序可成功移動到SD卡)。它出什麼問題了?

+0

它是一個應用程序或小部件?如果我沒有記錯,Widgets不能移動到SD卡。 – ccheneson 2011-01-25 21:07:41

+0

昨晚我正在處理我的應用程序時,我遇到了同樣的問題。我必須完全卸載應用程序,然後重新安裝它才能啓用「移動到SD卡」選項。你嘗試過嗎? – 2011-01-25 21:20:06

回答

11

剛試過這個。您在appliction標籤內有一行。同意它不起作用。 文章顯示它像清單標籤的一部分:

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

然後,它爲我工作。