summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-05-20 09:25:28 -0700
committerAlex Klyubin <klyubin@google.com>2015-05-20 10:50:20 -0700
commit0addfeb2d1851fe6d6ddd80b66882f00f1c2d927 (patch)
tree0e9af8f260817a33aca203e3c10929162885b891 /AndroidManifest.xml
parent99edf29ae47ca63d197cd7974c7eef7e067e96d4 (diff)
downloadandroid_packages_apps_Gallery2-0addfeb2d1851fe6d6ddd80b66882f00f1c2d927.tar.gz
android_packages_apps_Gallery2-0addfeb2d1851fe6d6ddd80b66882f00f1c2d927.tar.bz2
android_packages_apps_Gallery2-0addfeb2d1851fe6d6ddd80b66882f00f1c2d927.zip
Gallery2 app might use cleartext network traffic.
This declares that Gallery2 app might be using cleartext network traffic (e.g., HTTP instead of HTTPS). This CL does not change the behavior of the app. The flag added by this CL to the app's manifest will make it easier to identify apps that use cleartext traffic in the future. The only reason for using cleartext network traffic is the pre-existing public contract that this app can display externally provided HTTP image URLs and play back externally provided HTTP and RTSP video URLs. Bug: 19215516 Change-Id: I6e1e8400f40ba7c280742c71af7a572b0dbad231
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 234d39a38..2aea5699c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -43,7 +43,8 @@
android:hardwareAccelerated="true"
android:largeHeap="true"
android:restoreAnyVersion="true"
- android:supportsRtl="true">
+ android:supportsRtl="true"
+ usesCleartextHttp="true">
<uses-library android:name="com.google.android.media.effects" android:required="false" />
<uses-library android:name="org.apache.http.legacy" android:required="false" />
<activity android:name="com.android.gallery3d.app.MovieActivity"