From 660bbd4e3e298f276ff692d3bb0d74b0cf079b65 Mon Sep 17 00:00:00 2001 From: Yuriy Liskov Date: Mon, 24 Nov 2025 06:00:43 +0200 Subject: [PATCH] bump 6.1.33 --- leankeykeyboard/build.gradle | 4 ++-- .../com/liskovsoft/leankeyboard/ime/LeanbackImeService.java | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) 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); }