florent37 / SingleDateAndTimePicker

You can now select a date and a time with only one widget !
Apache License 2.0
1.02k stars 333 forks source link

Can't import it #258

Closed Zeit42 closed 4 years ago

Zeit42 commented 4 years ago

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 4 years ago

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 4 years ago

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

readme update PR.

260

florent37 commented 4 years ago

fixed