diff --git a/docs/html/guide/topics/manifest/manifest-element.jd b/docs/html/guide/topics/manifest/manifest-element.jd index 734a79dbcd9c6..33537556a3bd8 100644 --- a/docs/html/guide/topics/manifest/manifest-element.jd +++ b/docs/html/guide/topics/manifest/manifest-element.jd @@ -110,7 +110,6 @@ the significant version number used internally.
{@code android:installLocation}
The default install location for the application. -

This attribute was introduced in API Level 8.

The following keyword strings are accepted:

@@ -118,24 +117,32 @@ the significant version number used internally. Value Description - - "{@code auto}" - Let the system decide the ideal install location. This will usually be based on the user's -saved preference. "{@code internalOnly}" - The application requests to be installed on the internal device storage only. If this is set, -then the application will never be installed on the external storage (SD card). If the internal -storage is full, then the system will not install the application. + The application must be installed on the internal device storage only. If this is set, +the application will never be installed on the external storage. If the internal +storage is full, then the system will not install the application. This is also the default behavior +if you do not define {@code android:installLocation}. + + "{@code auto}" + The application may be installed on the external storage, but the system will install the +application on the internal storage by default. If the internal storage is full, then the system +will install it on the external storage. Once installed, the user can move the application +to either internal or external storage through the system settings. "{@code preferExternal}" The application prefers to be installed on the external storage (SD card). There is no guarantee that the system will honor this request. The application might be installed on internal storage if the external media is unavailable or full, or if the application uses the forward-locking -mechanism (not supported on external storage). +mechanism (not supported on external storage). Once installed, the user can move the application to +either internal or external storage through the system settings. +

Note: By default, your application will be installed on the +internal storage and cannot be installed on the external storage unless you define this attribute +to be either "{@code auto}" or "{@code preferExternal}".

+

When an application is installed on the external storage:

@@ -164,6 +172,7 @@ this attribute is set to {@code internalOnly}.

see also:
-
<application>
+
App Install Location
+<application>