summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-05-20 10:39:56 -0700
committerAlex Klyubin <klyubin@google.com>2015-05-20 10:39:56 -0700
commitc82150f4547b9383158a553c7f30a1d5b52067b2 (patch)
tree676c3415787997223eaa3fe2cb9fe1c11efa7553
parent67c838de37d8c3658391a46aba83dca522ab26f8 (diff)
downloadandroid_packages_apps_KeyChain-c82150f4547b9383158a553c7f30a1d5b52067b2.tar.gz
android_packages_apps_KeyChain-c82150f4547b9383158a553c7f30a1d5b52067b2.tar.bz2
android_packages_apps_KeyChain-c82150f4547b9383158a553c7f30a1d5b52067b2.zip
KeyChain does not use cleartext network traffic.
This declares to the platform and tools that this app does not use cleartext network traffic. The platform and tools will be blocking (on best effort basis) attempts to use such traffic by this app. For example, attempts to use HTTP (rather than HTTPS) will be blocked. Bug: 19215516 Change-Id: I4c6215af47112f75c577fa1174d85ca2165aeea3
-rwxr-xr-xAndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 4658206..3e03c87 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -4,7 +4,8 @@
android:sharedUserId="android.uid.system"
>
<application android:label="@string/app_name"
- android:allowBackup="false" >
+ android:allowBackup="false"
+ android:usesCleartextTraffic="false" >
<service android:name="com.android.keychain.KeyChainService">
<intent-filter>
<action android:name="android.security.IKeyChainService"/>