joielechong / CountryCodePicker

Country Code Picker (CCP) is an android library which provides an easy way to search and select country phone code ( national code ) for the telephone number.
Apache License 2.0
315 stars 143 forks source link

ERROR: Failed to resolve: com.github.joielechong:countrycodepicker:2.4.1 #89

Closed febinfavas closed 4 years ago

joielechong commented 4 years ago

This is probably because you haven't add the jitpack.io url in your repository. Add the url to your build.gradle, something like this:

allprojects {
  repositories {
    jcenter()
    google()
    maven { url "https://jitpack.io" }
  }
}