spiegel-keyman/android/Tests/KeyboardHarness
darcywong00 cdd75ccf5f Refactor longpress logic so key text is not confused with key code
A tchad keyboard has a diacritic rule that converts `=` (U_003D) into a combining macron (U_0304).
A longpress on `»` (U_00BB) was inadvertently triggering the diacritic rule, and outputting the macron.

The longpress code in KMEA and KMW needs to be refactored so they dont confuse key text (U_00BB is decimal 187) with underlying keyCodes (`=` is keyCode 187).

- fix KMW executePopupKey so key code is dictionary lookup instead of parsing the keyID.
- clean up JS call to executePopupKey since it only uses the keyID
2017-10-12 14:21:29 +07:00
..
app Refactor longpress logic so key text is not confused with key code 2017-10-12 14:21:29 +07:00
gradle/wrapper Change chirality test app to keyboardHarness 2017-10-04 10:33:16 +07:00
build.gradle Change chirality test app to keyboardHarness 2017-10-04 10:33:16 +07:00
build.sh Change chirality test app to keyboardHarness 2017-10-04 10:33:16 +07:00
gradle.properties Change chirality test app to keyboardHarness 2017-10-04 10:33:16 +07:00
gradlew Change chirality test app to keyboardHarness 2017-10-04 10:33:16 +07:00
gradlew.bat Change chirality test app to keyboardHarness 2017-10-04 10:33:16 +07:00
readme.md Change chirality test app to keyboardHarness 2017-10-04 10:33:16 +07:00
settings.gradle Change chirality test app to keyboardHarness 2017-10-04 10:33:16 +07:00

KeyboardHarness Test App

This app is is based on Samples/KMSample1 and targets keyboard functionality and reproducing bugs with keyboards rather than integration functionality. Use as system keyboard is currently not supported.

Version History

2017-09-26 1.0

  • Initial creation