mirror of
https://github.com/yuliskov/LeanKeyboard.git
synced 2026-04-21 07:26:53 -04:00
bump to 6.1.17
This commit is contained in:
@@ -14,8 +14,8 @@ android {
|
||||
applicationId "org.liskovsoft.leankeykeyboard.pro"
|
||||
minSdkVersion project.properties.minSdkVersion
|
||||
targetSdkVersion project.properties.targetSdkVersion
|
||||
versionCode 186
|
||||
versionName "6.1.16"
|
||||
versionCode 187
|
||||
versionName "6.1.17"
|
||||
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
</activity>
|
||||
|
||||
<service
|
||||
android:name="com.liskovsoft.leankeyboard.ime.KeyMapperImeService"
|
||||
android:name="com.liskovsoft.leankeyboard.ime.LeanbackImeService"
|
||||
android:label="@string/ime_service_name"
|
||||
android:permission="android.permission.BIND_INPUT_METHOD">
|
||||
<intent-filter>
|
||||
|
||||
@@ -4,11 +4,12 @@ import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.inputmethodservice.InputMethodService;
|
||||
import android.view.KeyEvent;
|
||||
import android.view.inputmethod.InputConnection;
|
||||
import com.liskovsoft.leankeykeyboard.BuildConfig;
|
||||
|
||||
public class KeyMapperImeService extends LeanbackImeService {
|
||||
public class KeyMapperImeService extends InputMethodService {
|
||||
private static final String KEY_MAPPER_INPUT_METHOD_ACTION_INPUT_DOWN_UP = BuildConfig.APPLICATION_ID + ".inputmethod.ACTION_INPUT_DOWN_UP";
|
||||
private static final String KEY_MAPPER_INPUT_METHOD_ACTION_INPUT_DOWN = BuildConfig.APPLICATION_ID + ".inputmethod.ACTION_INPUT_DOWN";
|
||||
private static final String KEY_MAPPER_INPUT_METHOD_ACTION_INPUT_UP = BuildConfig.APPLICATION_ID + ".inputmethod.ACTION_INPUT_UP";
|
||||
|
||||
@@ -20,7 +20,7 @@ import androidx.core.text.BidiFormatter;
|
||||
import com.liskovsoft.leankeyboard.ime.LeanbackKeyboardController.InputListener;
|
||||
import com.liskovsoft.leankeyboard.utils.LeanKeyPreferences;
|
||||
|
||||
public class LeanbackImeService extends InputMethodService {
|
||||
public class LeanbackImeService extends KeyMapperImeService {
|
||||
private static final String TAG = LeanbackImeService.class.getSimpleName();
|
||||
private static final boolean DEBUG = false;
|
||||
public static final String IME_CLOSE = "com.google.android.athome.action.IME_CLOSE";
|
||||
|
||||
Reference in New Issue
Block a user