mirror of
https://github.com/yuliskov/LeanKeyboard.git
synced 2025-12-23 22:17:44 -05:00
LeanKey Keyboard => LeanKeyboard
This commit is contained in:
24
README.md
24
README.md
@@ -1,14 +1,14 @@
|
||||
 LeanKeyKeyboard
|
||||
 LeanKeyKeyboard
|
||||
=========
|
||||
|
||||
[](https://www.mozilla.org/MPL/2.0/)
|
||||
|
||||
__LeanKeyKeyboard: Keyboard for Android-based set-top boxes and TVs:__
|
||||
__LeanKeyboard: Keyboard for Android-based set-top boxes and TVs:__
|
||||
|
||||
* <a href="https://play.google.com/store/apps/details?id=org.liskovsoft.androidtv.rukeyboard" target="_blank">Google Play page</a>
|
||||
* <a href="https://t.me/LeanKeyKeyboard">Telegram group</a>
|
||||
* <a href="https://t.me/LeanKeyboard">Telegram group</a>
|
||||
|
||||
__NOTE: Google Play release is outdated. So I recommend to obtain new releases [here](https://github.com/yuliskov/LeanKeyKeyboard/releases).__
|
||||
__NOTE: Google Play release is outdated. So I recommend to obtain new releases [here](https://github.com/yuliskov/LeanKeyboard/releases).__
|
||||
|
||||
### Features:
|
||||
* Designed for TV screens.
|
||||
@@ -24,14 +24,14 @@ __Tip: Do long press on the language button to choose between available language
|
||||
### Screenshots:
|
||||
* __[Open screenshots](#screens)__
|
||||
|
||||
### Install LeanKeyKeyboard:
|
||||
### Install LeanKeyboard:
|
||||
__Easy installation in less than 10 minutes with only FireTV__
|
||||
* <a href="https://github.com/yuliskov/LeanKeyKeyboard/wiki/How-to-Install-LeanKeyKeyboard-on-FireTV">Install LeanKeyKeyboard (only FireTV needed)</a>
|
||||
* <a href="https://github.com/yuliskov/LeanKeyboard/wiki/How-to-Install-LeanKeyKeyboard-on-FireTV">Install LeanKeyKeyboard (only FireTV needed)</a>
|
||||
|
||||
__Standard installation via ADB__
|
||||
* If you don't know how to sideload/install apps via ADB, read a tutorial (e.g. <a href="http://kodi.wiki/view/HOW-TO:Install_Kodi_on_Fire_TV" target="_blank">this one</a>)
|
||||
* <a href="https://github.com/yuliskov/LeanKeyKeyboard/releases" target="_blank">Download latest LeanKeyKeyboard APK</a> and sideload/install with adb:
|
||||
* *adb install -r LeanKeyKeyboard.apk*
|
||||
* <a href="https://github.com/yuliskov/LeanKeyboard/releases" target="_blank">Download latest LeanKeyKeyboard APK</a> and sideload/install with adb:
|
||||
* *adb install -r LeanKeyboard.apk*
|
||||
* Enjoy :)
|
||||
|
||||
### Donation:
|
||||
@@ -53,7 +53,7 @@ If you want to support my developments you are welcome to buy me a cup of coffee
|
||||
* [__XDA Discussion__](https://forum.xda-developers.com/fire-tv/general/guide-change-screen-keyboard-to-leankey-t3527675)
|
||||
|
||||
### Changelog:
|
||||
* [Check releases page for changelog ..](https://github.com/yuliskov/LeanKeyKeyboard/releases)
|
||||
* [Check releases page for changelog ..](https://github.com/yuliskov/LeanKeyboard/releases)
|
||||
|
||||
### Contributors:
|
||||
* __[aglt](https://github.com/aglt)__ (Icelandic lang)
|
||||
@@ -63,6 +63,6 @@ If you want to support my developments you are welcome to buy me a cup of coffee
|
||||
* __[yuliskov](https://github.com/yuliskov)__ (design & coding)
|
||||
|
||||
### Screens:
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
@@ -40,7 +40,7 @@ android {
|
||||
// https://stackoverflow.com/questions/18332474/how-to-set-versionname-in-apk-filename-using-gradle
|
||||
applicationVariants.all { variant ->
|
||||
variant.outputs.each { output ->
|
||||
def project = "LeanKeyKeyboardPro"
|
||||
def project = "LeanKeyboard"
|
||||
// Latest gradle fix: https://stackoverflow.com/questions/62075122/no-such-property-variantconfiguration-for-class
|
||||
def buildType = variant.buildType.name.take(1)
|
||||
def version = variant.versionName
|
||||
|
||||
@@ -373,7 +373,7 @@ public class LeanbackImeService extends KeyMapperImeService {
|
||||
mSuggestionsFactory.createSuggestions();
|
||||
mKeyboardController.updateSuggestions(mSuggestionsFactory.getSuggestions());
|
||||
|
||||
// NOTE: FileManager+ rename item fix: https://t.me/LeanKeyKeyboard/931
|
||||
// NOTE: FileManager+ rename item fix: https://t.me/LeanKeyboard/931
|
||||
// NOTE: Code below deletes text that has selection.
|
||||
//InputConnection connection = getCurrentInputConnection();
|
||||
//if (connection != null) {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="ime_name" translatable="false">LeanKey Keyboard</string>
|
||||
<string name="ime_service_name" translatable="false">LeanKey Keyboard</string>
|
||||
<string name="ime_name" translatable="false">LeanKeyboard</string>
|
||||
<string name="ime_service_name" translatable="false">LeanKeyboard</string>
|
||||
<string name="word_separators">".,;:!?
|
||||
() [] *</string>
|
||||
<string name="label_go_key">Merge</string>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="ime_name" translatable="false">LeanKey Keyboard</string>
|
||||
<string name="ime_service_name" translatable="false">LeanKey Keyboard</string>
|
||||
<string name="ime_name" translatable="false">LeanKeyboard</string>
|
||||
<string name="ime_service_name" translatable="false">LeanKeyboard</string>
|
||||
<string name="word_separators">" .,;:!?
|
||||
()[]*&@{}/<>_+=|"
|
||||
</string>
|
||||
|
||||
@@ -23,7 +23,7 @@ public class KbActivationActivity extends Activity {
|
||||
private static final String META_PACKAGE_NAME_ALT = "package_alt";
|
||||
private static final String META_CLASS_NAME_ALT = "class_alt";
|
||||
private static final String META_INTENT_NAME = "intent";
|
||||
private static final String MANUAL_URL = "https://github.com/yuliskov/LeanKeyKeyboard/wiki/How-to-Install-LeanKeyKeyboard-on-FireTV";
|
||||
private static final String MANUAL_URL = "https://github.com/yuliskov/LeanKeyboard/wiki/How-to-Install-LeanKeyKeyboard-on-FireTV";
|
||||
private List<Intent> mIntents = new ArrayList<>();
|
||||
private String mErrorMsg;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user