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