I want to know Both sim card\'s operator name when mobile is dual sim.In single SIM I got operator name programmatically But For duel SIM I can\'t although after so many sea
Since API version 22 its possible
try following code for device having os greater than android 5.1
List subscriptionInfos = SubscriptionManager.from(getApplicationContext()).getActiveSubscriptionInfoList();
for(int i=0; i
for more information : Documentation: SubscriptionManager - Android Hope it helps. Peace.