summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2010-10-15 00:07:26 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-10-15 00:07:26 -0700
commita8d25065739407d774663b1f19ce995142d3fad5 (patch)
tree9e08ace14bc47c1268b22a72739d676f38b01688 /docs
parent232570cc33b86f312f776b10063bc2fe3cf846ef (diff)
parent5cfa877e22a2d76d1ea36c3f0c2c708248da3d0e (diff)
downloadframeworks_base-a8d25065739407d774663b1f19ce995142d3fad5.zip
frameworks_base-a8d25065739407d774663b1f19ce995142d3fad5.tar.gz
frameworks_base-a8d25065739407d774663b1f19ce995142d3fad5.tar.bz2
am 5cfa877e: am eb4ef072: am 5249ad03: docs: add "boot completed" broadcast to list of DO NOTs for installing on external storage bug: 3088494
Merge commit '5cfa877e22a2d76d1ea36c3f0c2c708248da3d0e' * commit '5cfa877e22a2d76d1ea36c3f0c2c708248da3d0e': docs: add "boot completed" broadcast to list of DO NOTs for installing on external storage
Diffstat (limited to 'docs')
-rw-r--r--docs/html/guide/appendix/install-location.jd6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/html/guide/appendix/install-location.jd b/docs/html/guide/appendix/install-location.jd
index be89caf..914aa66 100644
--- a/docs/html/guide/appendix/install-location.jd
+++ b/docs/html/guide/appendix/install-location.jd
@@ -111,7 +111,7 @@ storage.</p>
<p class="caution"><strong>Caution:</strong> Although XML markup such as this will be ignored by
older platforms, you must be careful not to use programming APIs introduced in API Level 8
while your {@code minSdkVersion} is less than "8", unless you perform the work necessary to
-provide backward compatiblity in your code. For information about building
+provide backward compatibility in your code. For information about building
backward compatibility in your application code, see the <a
href="{@docRoot}resources/articles/backward-compatibility.html">Backward Compatibility</a>
article.</p>
@@ -167,6 +167,10 @@ not work until external storage is remounted.</dd>
<dd>Your {@link android.app.admin.DeviceAdminReceiver} and all its admin capabilities will
be disabled, which can have unforeseeable consequences for the device functionality, which may
persist after external storage is remounted.</dd>
+ <dt>Broadcast Receivers listening for "boot completed"</dt>
+ <dd>The system delivers the {@link android.content.Intent#ACTION_BOOT_COMPLETED} broadcast
+before the external storage is mounted to the device. If your application is installed on the
+external storage, it can never receive this broadcast.</dd>
</dl>
<p>If your application uses any of the features listed above, you <strong>should not</strong> allow