Keyboard Simple is a lightweight Android keyboard library built with Java and Kotlin, designed to be dropped into any Android project with minimal configuration. It is distributed via JitPack and covers the most common keyboard customization needs without pulling in heavy dependencies.
Integration
1. Add JitPack to your repositories
// settings.gradle.kts (or build.gradle)dependencyResolutionManagement { repositories { maven { url = uri("https://jitpack.io") } }}2. Add the dependency
// build.gradle.kts (app module)dependencies { implementation("com.github.NearApps:Keyboard-Simple:1.0.5")}Note (Latest release)
The latest published release is v1.0.5. You can find all releases on the GitHub releases page.
Tech Stack
- Java — core library implementation (70%)
- Kotlin — modern helpers and extensions (30%)
- Apache 2.0 — open-source, free to use in commercial projects