Install LazyKeyboard via Gradle
masterTo use LazyKeyboard in your Android project, follow these two steps:
- Add the JitPack repository to your root
build.gradlefile inside theallprojectsblock. - Add the LazyKeyboard dependency to your app-level
dependenciesblock.
// Step 1: Add to root build.gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
// Step 2: Add to dependencies
dependencies {
implementation 'com.github.onlyloveyd:LazyKeyboard:v1.5'
}