Hmm, just tested against one of my Market apps and it worked fine. I just installed it from the Market and was able to move it SD fine.
Below is my manifest, if it helps. Pretty simple app. The only thing that jumps out at me is that I have android:targetSdkVersion="8", and that does seem like that might be required. String ---------------------- <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="name.udell.convertor.lite" android:versionCode="8" android:versionName="1.3.3" android:installLocation="auto" > <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" /> <supports-screens android:anyDensity="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" /> <application android:icon="@drawable/ic_launcher_lite" android:label="@string/app_name" android:debuggable="true" > <activity android:name="name.udell.convertor.LiteConvertActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="name.udell.convertor.LiteSettingsActivity" android:label="@string/settings_title" > </activity> </application> </manifest> -- 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

