ccbu
7/8/2019 - 7:45 AM

wifiAdbCmd

public static void setTcpIp5555() {
    int port = 5555;
    try {
        Runtime.getRuntime().exec("su");
        Runtime.getRuntime().exec("setprop service.adb.tcp.port " + port);
        Runtime.getRuntime().exec("stop adbd");
        Runtime.getRuntime().exec("start adbd");
    } catch (IOException e) {
        e.printStackTrace();
    }
}