Disable/Enable mobile data on Android L with root access

后端 未结 4 1938
-上瘾入骨i
-上瘾入骨i 2020-12-28 22:02

I am writing a little app that only I will use and I want to pragmatically enable / disable my mobile data on a rooted android 4.5 device (I am running a custom Android L fo

4条回答
  •  隐瞒了意图╮
    2020-12-28 22:20

    I noticed that the service call method does not work consistently on all devices. The number to be used in it varied from device to device.

    I have found the following solution which works without any issue across all ROOTED devices.

    Simply execute the following via su

    To enable mobile data

    svc data enable
    

    To disable mobile data

    svc data disable
    

    It's as simple as that.

提交回复
热议问题