diff --git a/leankeykeyboard/build.gradle b/leankeykeyboard/build.gradle index 230d6f4..75d7fa4 100644 --- a/leankeykeyboard/build.gradle +++ b/leankeykeyboard/build.gradle @@ -22,8 +22,8 @@ android { applicationId "org.liskovsoft.leankeykeyboard.pro" minSdkVersion project.properties.minSdkVersion targetSdkVersion project.properties.targetSdkVersion - versionCode 202 - versionName "6.1.32" + versionCode 203 + versionName "6.1.33" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" diff --git a/leankeykeyboard/src/main/java/com/liskovsoft/leankeyboard/ime/LeanbackImeService.java b/leankeykeyboard/src/main/java/com/liskovsoft/leankeyboard/ime/LeanbackImeService.java index a33468d..79fe906 100644 --- a/leankeykeyboard/src/main/java/com/liskovsoft/leankeyboard/ime/LeanbackImeService.java +++ b/leankeykeyboard/src/main/java/com/liskovsoft/leankeyboard/ime/LeanbackImeService.java @@ -68,6 +68,7 @@ public class LeanbackImeService extends KeyMapperImeService { Log.d(TAG, "onCreate"); initSettings(); + // TODO: init other stuff here } private void setupDensity() { @@ -293,6 +294,7 @@ public class LeanbackImeService extends KeyMapperImeService { mKeyboardController.onGenericMotionEvent(event) || super.onGenericMotionEvent(event); } + @SuppressLint("WrongConstant") public void hideIme() { requestHideSelf(InputMethodService.BACK_DISPOSITION_DEFAULT); }