Can't import it
Zeit42 opened this issue · 3 comments
Zeit42 commented
I placed
implementation 'com.github.florent37:SingleDateAndTimePicker:2.2.0'
in my project level gradle dependencies, but when I hit sync, I get this error:
ERROR: Failed to resolve: com.github.florent37:SingleDateAndTimePicker:2.2.0
kintanpatel commented
Add Below line in your Project level Gradle,
allprojects {
repositories {
google()
jcenter()
//Add below Line
maven { url "https://jitpack.io" }
}
}
Downgrade SingleDateAndTimePicker Library,
implementation 'com.github.florent37:SingleDateAndTimePicker:2.0.5'
xnxaxo commented
florent37 commented
fixed