summaryrefslogtreecommitdiffstats
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
parentc19d5519535bc05225eac5f7dfb830fda48497de (diff)
downloadpackages_providers_ContactsProvider-733620e83649d047e5c74e48c0059e83daf5e4db.zip
packages_providers_ContactsProvider-733620e83649d047e5c74e48c0059e83daf5e4db.tar.gz
packages_providers_ContactsProvider-733620e83649d047e5c74e48c0059e83daf5e4db.tar.bz2
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
-rw-r--r--AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 80bd125..e6bf84b 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"