OrlandoLabao43 / sandrob

Automatically exported from code.google.com/p/sandrob
2 stars 0 forks source link

Needs app2sd badly #16

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
by Jure (May 14, 2011)

Needs app2sd badly This app would be great for accessing my online bank. 
However, due to its size (>14MB) and the inability to install it to SD, I am 
unable to use it on my (very much internal-storage-space-challenged) HTC Desire.

Please provide any additional information below.

Original issue reported on code.google.com by supp.san...@gmail.com on 14 May 2011 at 5:51

GoogleCodeExporter commented 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

GoogleCodeExporter commented 8 years ago
Fixed. Removed Content protection in Market settings

Original comment by supp.san...@gmail.com on 14 May 2011 at 6:12