From f16c6326c1c8825c11967289311e67267273e5ef Mon Sep 17 00:00:00 2001 From: Jatin Matani Date: Thu, 11 Sep 2014 14:25:51 +0900 Subject: [PATCH] add productionFlag for checking split keyboard status Change-Id: Ic999c9b0b2c116858801b8c38363c956de6d5faf --- .../android/inputmethod/latin/define/ProductionFlags.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java b/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java index 5ab126486..c22c5770f 100644 --- a/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java +++ b/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java @@ -40,4 +40,9 @@ public final class ProductionFlags { * When false, the metrics logging is not yet ready to be enabled. */ public static final boolean IS_METRICS_LOGGING_SUPPORTED = false; + + /** + * When {@code false}, the split keyboard is not yet ready to be enabled. + */ + public static final boolean IS_SPLIT_KEYBOARD_SUPPORTED = true; }