summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-04-02 13:21:52 -0700
committerAlex Klyubin <klyubin@google.com>2015-04-02 13:21:52 -0700
commit02804a4c51af651f031e4e740bd5611f64ef6930 (patch)
tree77761ba2bb465adfd62e8111efad7f40625f8c76
parent1d11df33102e9566e7492660c4e1cc3ef755d438 (diff)
downloadFMRadio-02804a4c51af651f031e4e740bd5611f64ef6930.tar.gz
Declare that FMRadio 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: I5dd7493d6abba8ad5ab92c7954aa2a8d0f6a6cbf
-rw-r--r--AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index cebce11..1e8c955 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -48,7 +48,8 @@
android:name=".FmMainActivity"
android:label="@string/app_name"
android:launchMode="standard"
- android:theme="@style/AppTheme" >
+ android:theme="@style/AppTheme"
+ android:usesCleartextTraffic="false" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />