diff options
author | 2015-06-23 10:15:34 -0700 | |
---|---|---|
committer | 2015-06-23 10:15:34 -0700 | |
commit | 4e9d2608265814fc684d030b513848e671c7bb17 (patch) | |
tree | 30a879060c4cc35e72e60ff15b124aff2e7592ee | |
parent | bf7c0106b0380bc80dd78d6026abce36b5e2ce51 (diff) | |
download | latinime-4e9d2608265814fc684d030b513848e671c7bb17.tar.gz latinime-4e9d2608265814fc684d030b513848e671c7bb17.tar.xz latinime-4e9d2608265814fc684d030b513848e671c7bb17.zip |
Do not force downloads on package replace.
This is causing issues we can't deal with in a safe and timely manner.
Furthermore, users who need downloaded dictionaries already have them by now.
Bug 21797386.
Change-Id: I97e5fd84edcf2b16f04db57b7ae4a13fa9ce993f
-rw-r--r-- | java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java b/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java index 11b4a64ff..90221512f 100644 --- a/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java +++ b/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java @@ -81,7 +81,8 @@ public final class SystemBroadcastReceiver extends BroadcastReceiver { // Remove all the previously scheduled downloads. This will also makes sure // that any erroneously stuck downloads will get cleared. (b/21797386) removeOldDownloads(context); - downloadLatestDictionaries(context); + // b/21797386 + // downloadLatestDictionaries(context); } else if (Intent.ACTION_BOOT_COMPLETED.equals(intentAction)) { Log.i(TAG, "Boot has been completed"); toggleAppIcon(context); |