A mirror for futokb (https://gitlab.futo.org/keyboard)
Go to file
Aleksandras Kostarevas 2e883781d5 Refactor layout definition system
Layouts are now defined in yaml files at latinime/java/assets/layouts. The new system makes simple layouts significantly easier to add.

Many layouts still need to be ported over to the new system and some bugs still remain. The old layout system and XML layouts will need to be removed.
2024-08-24 11:06:54 +03:00
.ci Add Dockerfile 2024-07-22 23:15:27 +03:00
.github/ISSUE_TEMPLATE Update GitHub issue templates 2024-07-27 21:32:07 +03:00
common Refactor layout definition system 2024-08-24 11:06:54 +03:00
dictionaries Update LatinIME to comply with Android's inclusive language guidance 2020-08-12 13:07:02 +02:00
gradle/wrapper Update dependencies 2024-01-11 22:26:38 +02:00
java Refactor layout definition system 2024-08-24 11:06:54 +03:00
libs@6112cd68d1 Initial voice input implementation 2023-08-27 19:08:44 +03:00
native Fix bug in LanguageModel native code 2024-08-24 10:51:18 +03:00
tests Refactor layout definition system 2024-08-24 11:06:54 +03:00
tools Fix issues with some locale texts 2024-08-24 10:54:45 +03:00
voiceinput-shared Refactor layout definition system 2024-08-24 11:06:54 +03:00
.clang-tidy Fix some linter warnings 2024-05-16 17:18:08 -05:00
.gitignore Add q8 model 2023-10-16 17:31:43 +03:00
.gitlab-ci.yml Add nightly APK uploading 2024-07-23 17:21:22 +03:00
.gitmodules Update submodule URL 2024-07-03 15:17:08 +03:00
Android.bp Initial working build of fork 2023-07-06 21:57:49 +03:00
build.gradle Refactor layout definition system 2024-08-24 11:06:54 +03:00
CleanSpec.mk Move LatinIME and its lib to /product 2019-01-11 15:20:31 +00:00
gradle.properties Initial working build of fork 2023-07-06 21:57:49 +03:00
gradlew Initial working build of fork 2023-07-06 21:57:49 +03:00
gradlew.bat Initial working build of fork 2023-07-06 21:57:49 +03:00
LICENSE.md Update LICENSE to allow use for any purpose 2024-07-24 23:43:41 +03:00
NOTICE Add license 2023-08-15 19:44:22 +03:00
OWNERS Update OWNERS file 2022-02-10 01:34:32 +00:00
proguard-rules.pro Fix voice input crash with proguard 2024-01-10 02:24:07 +02:00
README.md Update README url 2024-07-03 15:18:28 +03:00
sendZulipMessage.sh Add webhook to CI and update image version 2023-08-31 23:53:30 +03:00
settings.gradle Initial voice input implementation 2023-08-27 19:08:44 +03:00
setUpPropertiesCI.sh Add crash reporting file to CI 2023-08-31 22:48:35 +03:00
uploadNightly.sh Add nightly APK uploading 2024-07-23 17:21:22 +03:00

FUTO Keyboard

The goal is to make a good keyboard that doesn't spy on users. This repository is a fork of LatinIME (the Android Open-Source Keyboard).

The code is licensed under the FUTO Source First License 1.0.

Check out the FUTO Keyboard Wiki

Building

When cloning the repository, you must perform a recursive clone to fetch all dependencies:

git clone --recursive https://gitlab.futo.org/keyboard/latinime.git

You can also initialize this way if you forgot to specify the recursive clone:

git submodule update --init --recursive

You can then open the project in Android Studio and build it that way.