florent37/SingleDateAndTimePicker

Can't import it

Zeit42 opened this issue · 3 comments

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

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'

@Zeit42
implementation 'com.github.florent37:singledateandtimepicker:2.2.0'

readme update PR.
#260

fixed