I am pretty new to Android Studio, please bear with me.
I am trying to add this specific pull request into my project because I need the animation duration too and the original owner hasn't merged the request: https://github.com/81813780/AVLoadingIndicatorView/pull/74
I read on: How to compile forked library in Gradle?
that I can use jitpack
for this. So I added:
maven { url "https://jitpack.io" }
into my Project gradle file and
tried
compile 'com.github.kizitonwose:AVLoadingIndicatorView:2.1.3'
into my module gradle file. But when I sync gradle, I get error:
Failed to resolve: com.github.kizitonwose:AVLoadingIndicatorView:2.1.3
What am I doing wrong?