alhazmy13 / HijriDatePicker

Material (Gregorian - Hijri) Date & Time Picker
alhazmy13.net
Apache License 2.0
143 stars 63 forks source link

gradle implementation problem #55

Closed BassamAlim closed 2 years ago

BassamAlim commented 2 years ago

when trying to use the library i get: "Could not find 'net.alhazmy13.hijridatepicker:library:3.0.0'"

atifaziz1 commented 2 years ago

@BassamAlim You need to add below lines in gradle

allprojects { repositories { jcenter() google() maven { url "https://dl.bintray.com/alhazmy13/maven" } } }

BassamAlim commented 2 years ago

@atifaziz1 thank you