aboutsummaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-05-20 12:17:03 -0700
committerAlex Klyubin <klyubin@google.com>2015-05-20 12:17:03 -0700
commit733620e83649d047e5c74e48c0059e83daf5e4db (patch)
treef255acde41ebaa94b0a2200d645af326a84da40b /AndroidManifest.xml
parentc19d5519535bc05225eac5f7dfb830fda48497de (diff)
downloadContactsProvider-733620e83649d047e5c74e48c0059e83daf5e4db.tar.gz
ContactsProvider does not use cleartext network traffic.
This declares to the platform and tools that this provider does not use cleartext network traffic. The platform and tools will be blocking (on best effort basis) attempts to use such traffic by this provider. For example, attempts to use HTTP (rather than HTTPS) will be blocked. Bug: 19215516 Change-Id: Icfb93cb80161248dca2089f7fd6f31e7c8d1eadc
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 80bd1253..e6bf84b1 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -22,7 +22,8 @@
<application android:process="android.process.acore"
android:label="@string/app_label"
android:icon="@drawable/app_icon"
- android:allowBackup="false">
+ android:allowBackup="false"
+ android:usesCleartextTraffic="false">
<provider android:name="ContactsProvider2"
android:authorities="contacts;com.android.contacts"