File tree Expand file tree Collapse file tree
app/src/main/java/com/dessalines/thumbkey Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import com.dessalines.thumbkey.utils.KeyboardC
1818import com.dessalines.thumbkey.utils.KeyboardMode
1919import com.dessalines.thumbkey.utils.SwipeDirection
2020
21- val messageEaseKeyboard = KeyboardC (
21+ val MESSAGEEASE_EN_MAIN = KeyboardC (
2222 arrayOf(
2323 arrayOf(
2424 KeyItemC (
@@ -285,7 +285,7 @@ val messageEaseKeyboard = KeyboardC(
285285 )
286286)
287287
288- val messageEaseKeyboardShifted = KeyboardC (
288+ val MESSAGEEASE_EN_SHIFTED = KeyboardC (
289289 arrayOf(
290290 arrayOf(
291291 KeyItemC (
@@ -553,7 +553,7 @@ val messageEaseKeyboardShifted = KeyboardC(
553553)
554554
555555val MESSAGEEASE_KEYBOARD_MODES : Map <KeyboardMode , KeyboardC > = mapOf (
556- KeyboardMode .MAIN to messageEaseKeyboard ,
557- KeyboardMode .SHIFTED to messageEaseKeyboardShifted ,
558- KeyboardMode .NUMERIC to numericKeyboard
556+ KeyboardMode .MAIN to MESSAGEEASE_EN_MAIN ,
557+ KeyboardMode .SHIFTED to MESSAGEEASE_EN_SHIFTED ,
558+ KeyboardMode .NUMERIC to NUMERIC_KEYBOARD
559559)
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import com.dessalines.thumbkey.utils.KeyItemC
1515import com.dessalines.thumbkey.utils.KeyboardC
1616import com.dessalines.thumbkey.utils.SwipeDirection
1717
18- val numericKeyboard = KeyboardC (
18+ val NUMERIC_KEYBOARD = KeyboardC (
1919 arrayOf(
2020 arrayOf(
2121 KeyItemC (
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import com.dessalines.thumbkey.utils.KeyboardC
1818import com.dessalines.thumbkey.utils.KeyboardMode
1919import com.dessalines.thumbkey.utils.SwipeDirection
2020
21- val thumbkeyV4Keyboard = KeyboardC (
21+ val THUMBKEY_EN_V4_MAIN = KeyboardC (
2222 arrayOf(
2323 arrayOf(
2424 KeyItemC (
@@ -285,7 +285,7 @@ val thumbkeyV4Keyboard = KeyboardC(
285285 )
286286)
287287
288- val thumbkeyV4KeyboardShifted = KeyboardC (
288+ val THUMBKEY_EN_V4_SHIFTED = KeyboardC (
289289 arrayOf(
290290 arrayOf(
291291 KeyItemC (
@@ -552,8 +552,8 @@ val thumbkeyV4KeyboardShifted = KeyboardC(
552552 )
553553)
554554
555- val THUMBKEY_V4_KEYBOARD_MODES : Map <KeyboardMode , KeyboardC > = mapOf (
556- KeyboardMode .MAIN to thumbkeyV4Keyboard ,
557- KeyboardMode .SHIFTED to thumbkeyV4KeyboardShifted ,
558- KeyboardMode .NUMERIC to numericKeyboard
555+ val THUMBKEY_EN_V4_KEYBOARD_MODES : Map <KeyboardMode , KeyboardC > = mapOf (
556+ KeyboardMode .MAIN to THUMBKEY_EN_V4_MAIN ,
557+ KeyboardMode .SHIFTED to THUMBKEY_EN_V4_SHIFTED ,
558+ KeyboardMode .NUMERIC to NUMERIC_KEYBOARD
559559)
You can’t perform that action at this time.
0 commit comments