Install Ketch via JitPack
masterTo integrate Ketch into your Android project, add the JitPack repository to your settings.gradle file and then add the Ketch dependency to your module-level build.gradle file.
Note: Always use the latest available version.
// settings.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' } // add this
}
}
// build.gradle (module level)
dependencies {
implementation 'com.github.khushpanchal:Ketch:2.0.6'
}