From beb40ca95cc4acc2045fb0fe8faa32be2df3ef66 Mon Sep 17 00:00:00 2001 From: Alex Klyubin Date: Thu, 2 Apr 2015 12:40:54 -0700 Subject: 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) --- AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" >