Install TouchImageView via JitPack
masterTo use TouchImageView in your Android project, add the JitPack repository to your allprojects block and then add the dependency to your dependencies block. Use the SupportLib version for older projects or the AndroidX version for modern projects.
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
// last SupportLib version
implementation 'com.github.MikeOrtiz:TouchImageView:1.4.1'
// or for Android X
implementation 'com.github.MikeOrtiz:TouchImageView:$LAST_VERSION'
}