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();
}
}