From 131aae963207e879fd43d0ae681f19d96194dbbc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Sat, 12 Dec 2015 12:10:17 +0100 Subject: [PATCH] Collator bug workaround for one of my devices. --- src/com/hughes/android/dictionary/DictionaryApplication.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/com/hughes/android/dictionary/DictionaryApplication.java b/src/com/hughes/android/dictionary/DictionaryApplication.java index b415501..4fc4064 100644 --- a/src/com/hughes/android/dictionary/DictionaryApplication.java +++ b/src/com/hughes/android/dictionary/DictionaryApplication.java @@ -65,8 +65,9 @@ public class DictionaryApplication extends Application { // Works well enough for most european languages, // gives faster startup and avoids crashes on some // devices due to Dalvik bugs (e.g. ARMv6, S5570i, CM11). - // Leave it enabled by default for correctness. - static public final boolean USE_COLLATOR = true; + // Leave it enabled by default for correctness except + // for my known broken development/performance test device config. + static public final boolean USE_COLLATOR = !android.os.Build.FINGERPRINT.equals("Samsung/cm_tassve/tassve:4.4.4/KTU84Q/20150211:userdebug/release-keys"); // Static, determined by resources (and locale). // Unordered. -- 2.43.0