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
There is a similar problem in native Android, such as the United States, which previously returned US, but now returns "54003".
If the plugin is written on the basis of native Android, I guess this is the reason
public static String getCountryCode(double lat,double lng) {
Geocoder geocoder = new Geocoder(Utils.getContext(), Locale.getDefault());
try {
List<Address> addresses = geocoder.getFromLocation(lat, lng, 1);
if (addresses.size() > 0) {
Address address = addresses.get(0);
// The numeric code returned in Android 13 is not the country number
return address.getCountryCode();
}
} catch (IOException e) {
e.printStackTrace();
}
return "";
}
Is there already an issue requesting this feature?
Please select affected platform(s)
Use case
countryCode=“”
Proposal
countryCode=“CN”
Specific requirements or considerations
No response
Additional information or context
No response
The text was updated successfully, but these errors were encountered: