Is there any way in sdk(default) that can handle dual sims? There are many number of android phones available in market which are dual sim. What i want is programmatically change the default sim. Is it possible?
Asked
Active
Viewed 7,885 times
6
-
1You can use Java reflection to get dual SIM info [See here is demo](http://stackoverflow.com/a/17499889/703851) – Vaibhav Jani Jul 06 '13 at 05:29
2 Answers
5
As of Android 5.1 Multiple-Sim Support has been officially added to the Android SDK!
You can access information about the current used sim through the SubscriptionManager class.

Ahmad
- 69,608
- 17
- 111
- 137
0
Yes, you can use SubscriptionInfo
class for achieving that, here's an answer by me

Manoj Perumarath
- 9,337
- 8
- 56
- 77