flickabledialog
flickabledialog copied to clipboard
Failed to resolve
Hi. Your library failed to resolve in gradle, android studio. I just added compile 'com.github.tkurimura:flickabledialog:0.9.0' in my app's gradle file, that's not work. What's wrong? Thanks.
same case here. Easy solution is to use jitpack.
For using jitpack add this in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
and add this dependency in your app build.gradle file
dependencies {
compile 'com.github.t-kurimura:flickabledialog:3bc3b82ef1'
}
i'll resolve problems, compile dependencies with hash.
Same thing happens to me. Can't resolve.. maven { url 'https://jitpack.io' } is added and I'm trying to compile using compile 'com.github.tkurimura:flickabledialog:0.9.0'
@AceThaGemini 0.9.0 is not available on Jitpack. See this for reference
That did the trick @raq154 :+1: Gracious!
@raq154 👍 !