summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-04-02 13:44:46 -0700
committerAlex Klyubin <klyubin@google.com>2015-04-02 14:05:05 -0700
commitb848d86cc7ed11b6f44075b44725806a8603e9ab (patch)
treee6870082a9facc75855a3e71921e3e8e0cb1c75a
parent6a16756da4d793f5de6f71b75ced79fc6c27ae04 (diff)
downloadandroid_packages_providers_CalendarProvider-b848d86cc7ed11b6f44075b44725806a8603e9ab.tar.gz
android_packages_providers_CalendarProvider-b848d86cc7ed11b6f44075b44725806a8603e9ab.tar.bz2
android_packages_providers_CalendarProvider-b848d86cc7ed11b6f44075b44725806a8603e9ab.zip
CalendarProvider 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 app. For example, attempts to use HTTP (rather than HTTPS) will be blocked. Bug: 19215516 Change-Id: I7c85b58275643cafc9e689161d511dac800f2d97
-rw-r--r--AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 0c33c03..8c80116 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -38,7 +38,8 @@
<application android:label="@string/calendar_storage"
android:allowBackup="false"
- android:icon="@drawable/app_icon">
+ android:icon="@drawable/app_icon"
+ android:usesCleartextTraffic="false">
<!-- TODO: Remove dependency of application on the test runner
(android.test) library. -->
<uses-library android:name="android.test.runner" />