futokb/README.md

21 lines
789 B
Markdown
Raw Permalink Normal View History

2023-08-11 20:55:05 +01:00
# FUTO Keyboard
2024-06-18 21:11:18 +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).
The code is licensed under the [FUTO Source First License 1.0](LICENSE.md).
2023-08-11 20:55:05 +01:00
2024-05-06 22:17:16 +01:00
Check out the [FUTO Keyboard Wiki](https://gitlab.futo.org/alex/keyboard-wiki/-/wikis/FUTO-Keyboard)
2023-08-27 17:08:44 +01:00
## Building
When cloning the repository, you must perform a recursive clone to fetch all dependencies:
```
2024-07-03 13:18:28 +01:00
git clone --recursive https://gitlab.futo.org/keyboard/latinime.git
2023-08-27 17:08:44 +01:00
```
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.