Skip to content

Latest commit

 

History

History

adb_helper

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

adb util scripts

connect.sh

Runs adb command "adb connect url:port" for certain device from list or at a specific address. You should modify ulrs and port for your devices:

url=10.10.21
port=2111

mode5addr=84
mode72addr=88
mode73addr=89
mode10addr=47

To connect by specific address use option -a

Usage examples:

connect to device with mode5addr (adb connect 10.10.21.46:2111)

./connect.sh 5

adb kill-server

./connect.sh -r

kill server and connect to device with mode5addr (kill-server $$ adb connect 10.10.21.46:2111)

./connect.sh -r 5

connect to device with address 10.10.21.90 which isn't in list (adb connect 10.10.21.90:2111)

./connect.sh -a 90

kill server and connect to device with address 10.10.21.90 which isn't in list (kill-server $$ adb connect 10.10.21.90:2111)

./connect.sh -ra 90

imei.sh

Just returns imei of single device connected via adb

screen_size_dp.sh

Shows screen size in density-independent pixels (dp) of single device connected via adb