Is there a way to RESET Phone Radio Network Signal in android app ? (This might be equivalent to pulling out and in SIM card)
One possible way is to enable airplane mode, but I think it is not the correct approach.
Settings.System.putString(Context.getContentResolver(),
Settings.System.AIRPLANE_MODE_RADIOS,
"cell");
Settings.System.putInt(Context.getContentResolver(),
Settings.System.AIRPLANE_MODE_ON, 1);
Thanks!