You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we select Saintbarthelemy, it has country code +590, which same as some other countries like Saint Martin. so This code decides the country code upon format of remaining number. if that number is invalid then this
String region = mPhoneUtil.getRegionCodeForNumber(phoneNumber);
returns null.
upon next line
int countryIdx = mCountries.indexOfIso(region);
in indexOfIso method .. toUpperCase is being called upon region which produces null pointer exception.
Pardon me if anything is wrong with creating this issue
Thanks
The text was updated successfully, but these errors were encountered:
hi,
When we select Saintbarthelemy, it has country code +590, which same as some other countries like Saint Martin. so This code decides the country code upon format of remaining number. if that number is invalid then this
String region = mPhoneUtil.getRegionCodeForNumber(phoneNumber);
returns null.
upon next line
int countryIdx = mCountries.indexOfIso(region);
in indexOfIso method .. toUpperCase is being called upon region which produces null pointer exception.
Pardon me if anything is wrong with creating this issue
Thanks
The text was updated successfully, but these errors were encountered: