futokb/README.md

23 lines
868 B
Markdown
Raw Permalink Normal View History

2023-08-11 20:55:05 +01:00
# FUTO Keyboard
2023-08-15 17:44:22 +01:00
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)](https://android.googlesource.com/platform/packages/inputmethods/LatinIME). Changes are licensed under [this license](FTL_LICENSE.md) for now.
2023-08-11 20:55:05 +01:00
Eventual goals:
* Improve upon various aspects of the keyboard, such as theming
* Integrated voice input
* Transformer language model instead of n-gram
2023-08-27 17:08:44 +01:00
* On-device finetuning of a language model(?)
## Building
When cloning the repository, you must perform a recursive clone to fetch all dependencies:
```
git clone --recursive git@gitlab.futo.org:alex/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.