Closed GoogleCodeExporter closed 8 years ago
There is attribute set to auto so it should work.
Doc snipet from android documentation:
If you declare "auto", you indicate that your application may be installed on
the external storage, but you don't have a preference of install location. The
system will decide where to install your application based on several factors.
The user can also move your application between the two locations.
When your application is installed on the external storage:
* There is no effect on the application performance so long as the external storage is mounted on the device.
* The .apk file is saved on the external storage, but all private user data, databases, optimized .dex files, and extracted native code are saved on the internal device memory.
* The unique container in which your application is stored is encrypted with a randomly generated key that can be decrypted only by the device that originally installed it. Thus, an application installed on an SD card works for only one device.
* The user can move your application to the internal storage through the system settings.
Warning: When the user enables USB mass storage to share files with a computer
or unmounts the SD card via the system settings, the external storage is
unmounted from the device and all applications running on the external storage
are immediately killed.
<manifest package="org.sandrob"
android:versionCode="10"
xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto"
android:versionName="1.0.0">
Original comment by supp.san...@gmail.com
on 14 May 2011 at 5:56
Fixed. Removed Content protection in Market settings
Original comment by supp.san...@gmail.com
on 14 May 2011 at 6:12
Original issue reported on code.google.com by
supp.san...@gmail.com
on 14 May 2011 at 5:51