Hi I am developing an android app, where I am trying to turn on/off the phone cellular network. I tried looking for solutions, but did not succeed.
Please help! Thanks in advance.
Hi I am developing an android app, where I am trying to turn on/off the phone cellular network. I tried looking for solutions, but did not succeed.
Please help! Thanks in advance.
if your mean is to turn on /off airplane mode you can use following link
Toggle airplane mode in Android.
and be sure that add following line to manifest file
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
/// Edit
As far as im aware flight mode will cover selection of setting to disable all wireless communication.
If you wish to only disable parts this will have to be done individually, not via flight mode.
try a method for each part of communication you wish to terminate.