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
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" />