Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. adb shell am start -a android.intent.action.MAIN -n com.android.settings/.wifi.WifiSettings adb shell input keyevent 19 & adb shell input keyevent 19 & adb shell input keyevent 23
  2.  
  3. adb shell "svc wifi enable"
  4.  
  5. adb shell am start -n com.android.settings/.wifi.WifiStatusTest
  6.  
  7. adb shell dumpsys connectivity
  8.  
  9. adb shell ping www.google.com
  10.  
  11. adb pull $(adb shell uiautomator dump | grep -o '[^ ]*.xml') ui.xml
  12. grep 'text="OFF"' ui.xml
  13. if [ $? == 0 ]; then
  14. # Turn WIFI on
  15. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement