#!/bin/bash
while true
do
adb devices
adb shell settings put secure user_setup_complete 1
adb shell settings put global device_provisioned 1
adb tcpip 5555
done
2 Likes
#!/bin/bash
while true
do
adb devices
adb shell settings put secure user_setup_complete 1
adb shell settings put global device_provisioned 1
adb tcpip 5555
done