diff options
| author | Andrew Solovay <asolovay@google.com> | 2015-01-21 19:20:57 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-01-21 19:20:58 +0000 |
| commit | 78f4342fac982a130a62dac2a459cef2a4c29f5a (patch) | |
| tree | 29ea4141095da868a6263b26749cb3b2728306e5 | |
| parent | f082f8980e742e9a60aeb91271caff38e10cf0a8 (diff) | |
| parent | f92dbe01154cf55737297460f43e493b991c7638 (diff) | |
| download | frameworks_base-78f4342fac982a130a62dac2a459cef2a4c29f5a.zip frameworks_base-78f4342fac982a130a62dac2a459cef2a4c29f5a.tar.gz frameworks_base-78f4342fac982a130a62dac2a459cef2a4c29f5a.tar.bz2 | |
Merge "docs: WebView security notes for apps on pre-K devices" into lmp-docs
| -rw-r--r-- | docs/html/training/articles/security-tips.jd | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/html/training/articles/security-tips.jd b/docs/html/training/articles/security-tips.jd index e05b44c..3215a0e 100644 --- a/docs/html/training/articles/security-tips.jd +++ b/docs/html/training/articles/security-tips.jd @@ -445,7 +445,17 @@ locally. Server-side headers like <code>no-cache</code> can also be used to indicate that an application should not cache particular content.</p> - +<p>Devices running platforms older than Android 4.4 (API level 19) +use a version of {@link android.webkit webkit} that has a number of security issues. +As a workaround, if your app is running on these devices, it +should confirm that {@link android.webkit.WebView} objects display only trusted +content. You should also use the updatable security {@link +java.security.Provider Provider} object to make sure your app isn’t exposed to +potential vulnerabilities in SSL, as described in <a +href="{@docRoot}training/articles/security-gms-provider.html">Updating Your +Security Provider to Protect Against SSL Exploits</a>. If your application must +render content from the open web, consider providing your own renderer so +you can keep it up to date with the latest security patches.</p> <h3 id="Credentials">Handling Credentials</h3> |
