allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.fasilthottathil:CountrySelectionDialog:1.0.5'
}
CountrySelectionDialog().create(this)
.show()?.setOnCountrySelected {
Log.d(COUNTRY_NAME, it.name)
Log.d(COUNTRY_CODE, it.code)
Log.d(COUNTRY_DIAL_CODE, it.dial_code)
}