summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-05-19 13:46:31 -0700
committerAlex Klyubin <klyubin@google.com>2015-05-19 13:46:31 -0700
commit3ddf95bc8caddc8e339fc579cb83929abc5a0ffa (patch)
tree14502ec1d7c8e7159427bf2d0a0e1f9c7af02a77
parent5f75547d3bdb2aee26d7c936ea0c84cff9c68f69 (diff)
downloadSoundRecorder-3ddf95bc8caddc8e339fc579cb83929abc5a0ffa.tar.gz
SoundRecorder 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: Idb377e6dabe6b4d879dd4eab52bba009828f0ce8
-rw-r--r--AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 02fc212..11d9f6e 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -24,7 +24,8 @@
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:label="@string/app_name"
- android:icon="@drawable/ic_launcher_soundrecorder">
+ android:icon="@drawable/ic_launcher_soundrecorder"
+ android:usesCleartextTraffic="false">
<activity android:name="SoundRecorder"
android:configChanges="orientation|screenSize|keyboardHidden"
android:screenOrientation="unspecified"