summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-04-02 12:40:54 -0700
committerAlex Klyubin <klyubin@google.com>2015-05-19 22:32:21 +0000
commitbeb40ca95cc4acc2045fb0fe8faa32be2df3ef66 (patch)
tree71cf779e7cd16226fdb246cd0387201d8f795942 /AndroidManifest.xml
parente3ef956f23cf797ba59f9eb5c04abb6d5277fb6f (diff)
downloadandroid_packages_apps_Camera2-beb40ca95cc4acc2045fb0fe8faa32be2df3ef66.tar.gz
android_packages_apps_Camera2-beb40ca95cc4acc2045fb0fe8faa32be2df3ef66.tar.bz2
android_packages_apps_Camera2-beb40ca95cc4acc2045fb0fe8faa32be2df3ef66.zip
Declare that Camera2 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: Icaad30144192b13df87726445e19c37e0fd824bf (cherry picked from commit 2cd1529cd3ae0aa03e9e28d20b07ac072fc065c0)
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 076863de2..07647ae45 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -47,7 +47,8 @@
android:largeHeap="true"
android:restoreAnyVersion="true"
android:supportsRtl="true"
- android:theme="@style/Theme.Camera" >
+ android:theme="@style/Theme.Camera"
+ android:usesCleartextTraffic="false" >
<activity
android:name="com.android.camera.CameraActivity"
android:clearTaskOnLaunch="true"