How do I disable the Internet connection in Android Emulator?

后端 未结 11 1721
执念已碎
执念已碎 2020-12-29 01:33

I am trying to check Internet connectivity on Android using the following method. I have a Wi-Fi connection.

private boolean checkInternetConnection() {
             


        
11条回答
  •  余生分开走
    2020-12-29 02:05

    Try the below command

    WIFI:
    $ adb shell svc wifi enable
    $ adb shell svc wifi disable
    MOBILE DATA:
    $ adb shell svc data enable
    $ adb shell svc data disable
    

提交回复
热议问题