In below code I can get country code (2 alpha). Is it possible to get currency according to the country code? If yes please tell me how? I don't want to add any runtime permission for this app.
final TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
final String simCountry = tm.getSimCountryIso();
if (simCountry != null && simCountry.length() == 2) { // SIM country code is available
String country_code = simCountry.toLowerCase(Locale.US);
//return result - "in". (for India)
//here I want to get the currency according to the country code
}