aboutsummaryrefslogtreecommitdiffstats
path: root/java/AndroidManifest.xml
diff options
context:
space:
mode:
authorAlex Klyubin <klyubin@google.com>2015-04-02 13:32:22 -0700
committerAlex Klyubin <klyubin@google.com>2015-04-02 13:32:22 -0700
commit24a9683ac9fc1b6d3ac49de449ea4b2f155f26a9 (patch)
tree0c79bbcf135b1581e290fd1364e77c5ac68ce5b9 /java/AndroidManifest.xml
parent1a58c47ebe137ee1d5b3a2567b97802946945d38 (diff)
downloadlatinime-24a9683ac9fc1b6d3ac49de449ea4b2f155f26a9.tar.gz
latinime-24a9683ac9fc1b6d3ac49de449ea4b2f155f26a9.tar.xz
latinime-24a9683ac9fc1b6d3ac49de449ea4b2f155f26a9.zip
Declare that LatinIME 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: I4c933a214457025797e077b72d8daf8a0c876923
Diffstat (limited to 'java/AndroidManifest.xml')
-rw-r--r--java/AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/AndroidManifest.xml b/java/AndroidManifest.xml
index f58c401c7..7e77e77d1 100644
--- a/java/AndroidManifest.xml
+++ b/java/AndroidManifest.xml
@@ -38,7 +38,8 @@
<application android:label="@string/english_ime_name"
android:icon="@drawable/ic_launcher_keyboard"
android:supportsRtl="true"
- android:allowBackup="true">
+ android:allowBackup="true"
+ android:usesCleartextTraffic="false">
<!-- Services -->
<service android:name="LatinIME"