In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article shows you the working principle and usage of ADB, a simple automation tool for Python programming, which is concise and easy to understand. It will definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.
Preface
ADB, the Chinese name Android Test Bridge, is a versatile command-line tool that can be used to perform various device operations (such as installing and debugging applications) and to provide access to Unix shell, which can be used to run various commands on the device. It is a client-server program that includes the following three components:
Client: used to send commands. The client runs on the development computer. You can invoke the client from the command line terminal by issuing the ADB command.
Daemon: runs commands on the device. The daemon runs as a background process on each device.
Server: manages communication between the client and the daemon. The server runs as a background process on the development machine.
With this command line tool, we can use it to manipulate the resources on the phone, and we can easily manipulate the applications on the phone without the help of Android SDK.
I. working principle
When you start an ADB client, the client first checks to see if any ADB server processes are running. If not, it starts the server process. After startup, the server binds to local TCP port 5037 and listens for commands issued by ADB clients-all ADB clients communicate with the ADB server through port 5037.
The server then establishes a connection with all running devices. It scans odd-numbered ports between 5555 and 5585, which are used by the first 16 simulators, to find the simulator. Once the server discovers the ADB daemon (ADBD), it establishes a connection with the appropriate port. Note that each emulator uses a pair of ports in order-an even-numbered port for console connections and an odd-numbered port for ADB connections.
Download ADB
Here the editor is ready for you. Download address: https://u062.com/file/7715018-452566390. If you want to use ADB in any file directory, you must add the environment variable to the installation directory of ADB. Then we can use ADB's interface tool, which can easily execute ADB commands and display the results. This tool is APKInstaller, download address: https://u062.com/file/7715018-452566398, as shown in the figure:
III. Basic operation
1. Start-up and shutdown operation of the device
Here I choose to connect to the simulator to see the difference between connections.
1)。 Connect the equipment
Adb connect 127.0.0.1 6200 connects to a simulator
2)。 Start the service
Adb start-server# enables the service.
3)。 View Devic
Adb devices # View device information adb version # device version adb help # help documentation adb get-state # View device status device (normal connection), offline (connection abnormal), unknown (no connection) adb get-serialno # get serial number adb get-devpath # get device path adb shell cat / system/build.prop # get device name
4)。 Operate multiple Devic
Adb-a listens on all network interfaces Not just localhost-d using USB devices (if multiple devices are incorrectly connected)-e using TCP / IP devices (if multiple TCP / IP devices are available)-s using the given serial number (overriding ANDROID_SERIAL)-t using the given device ID-h adb server hostname (default = localhost)-p adb server port (default = 5037)-l listening from sockets Adb server of (default = tcp: localhost: 5037) for example: adb-s 127.0.0.1 localhost 62001 shell
In this way, we have entered the Shell interface of the simulator.
5)。 Shut down the service
Adb kill-server
6)。 Set the port that listens to TCP/IP
Adb tcpip 5555
7)。 Disconnect
Adb disconnect 127.0.0.1:62001
8)。 Shutdown and restart
Adb reboot # device restart adb shutdown # device shutdown
9) .Root permissions
Adb root # normal output: restarting adbd as root adb unroot # cancels root permission
10)。 Brushing mode
Adb reboot bootloader # reboots to bootloader, that is, the brush mode adb reboot recovery # restarts to recovery, that is, the recovery mode adb sideload # updates the system
11)。 Command reprint
Adb wait-for-device # reprints the command in the adb command before the simulator / device is connected. Equipment application operation
1)。 View application
Adb shell pm list packages # all applications adb shell pm list package-f # adb shell pm list packages-s # system Application adb shell pm list packages-3 # tripartite Application adb shell pm list packages | findstr bluetooth # filter application pipe character to search, use grep under Linux
2)。 View the Activity information of the application
Adb shell dumpsys package com.android.bluetooth # View the package name information of the system application Bluetooth adb shell dumpsys activity activities # View all active package names adb shell dumpsys activity | findstr mFocusedActivity # see which package adb shell dumpsys activity top is currently restarted | findstr activity # find the parent window of the device active program
3)。 Clear application data and cache
Adb shell pm clear
3. Install uninstall application adb install D:/aa.apk# install apk adb install-r D:/aa.apk# override install retain data and cache files-g grants all runtime permissions adb shell pm install / scard/picture# the apk adb uninstall-k package name installed on the phone requires-s to specify 4 in the simulator or real machine. Log adb logcat# View log adb logcat-v time # print details log, all current operations and results will be recorded, and continuous monitoring by default Press Ctrl+c to end adb logcat-v time > D:\ log.txt # Save log to computer adb logcat-f / sdcard/1.txt # Save log to mobile phone adb logcat | findstr com.android.bluetooth # Save log with specified package name adb logcat-c # clear log output adb logcat | findstr ActivityManager # View currently running Activity adb logcat | findstr Displayed # View currently running Activity adb bugreport # View the bug report adb logcat-b radio # wireless communication log adb shell dmesg # kernel log 5. Device file operation # transfer the files on the computer to the mobile memory card adb push C:\ Users\ Administrator\ Desktop\ 1.gif / sdcard/ # transfer the files in the mobile storage card to the computer adb pull / sdcard/1.gif C:\ Users\ Administrator\ Desktop\
6. Screenshot, screenshot adb shell screencap / sdcard/1.png # current window screenshot save to mobile phone adb shell / system/bin/screencap-p / sdcard/2.png adb exec-out screencap-p > 1.png # screenshot save to computer adb shell screenrecord > 1.mp4 # screen recording Ctrl+c stops recording-- size # video size-- bit-rate # bitrate-- time-limit # duration-- verbose # command line displays log information Note: screencap 7.Shell is not supported in simulator and Android versions below
There are many commands in Shell, let's briefly list:
Command function cat display file contents cd switch directory chmod change file access mode / access permissions df View disk space usage grep filter output kill Kill process ls enumerated directory contents mount mount directory view and management mv move or rename file ps View the running process rm delete files top view the resource usage of the process
1)。 Enter and exit
Adb shell # enter shell and return $but no root permission # have root permission exit # exit shell
2)。 Information about the Devic
Adb shell getprop ro.build.version.release # Android version adb shell getprop ro.product.model # View device model adb shell cat / sys/class/net/wlan0/address # View MAC address adb shell wm size # device screen resolution adb shell wm size 400X654 # set screen resolution adb shell wm size reset # restore original screen resolution adb shell wm density # device screen density adb shell wm density # modify screen density to 100dpi adb shell wm density reset # restore the original screen density adb shell wm overscan 10 Magazine 30100 # display area adb shell wm overscan reset # restore the original display area adb shell dumpsys window displays # display parameters adb shell service list # View background services information adb shell settings put global adb_enabled 0 # turn off USB debugging mode adb shell uiautomator dump # get the control information of the current interface adb shell ime list-s # input method on the device
3)。 Process
Adb shell ps # View the process running on the phone adb shell ps | findstr bluetooth adb shell ps-x pid # View the process status information of the specified pid adb shell kill pid # kill the process according to the process number adb shell procrank # kill the process adb shell start adbd # start the daemon adb shell stop adbd # close the daemon
4)。 Performance analysis.
Adb shell cat / proc/cpuinfo # get CPU serial number adb shell cat / proc/meminfo # View current memory footprint adb shell cat / proc/iomem # View IO memory partition adb remount # remount system partition to read / write partition adb shell dumpsys meminfo bluetooth # View Bluetooth memory adb shell dumpsys cpuinfo | findstr bluetooth # get CPU adb shell top # View real-time resource footprint adb shell top-N1 | findstr bluetooth # refresh memory information Then return to Bluetooth memory footprint adb shell top # View device cpu and memory footprint adb shell top-m 6 # View memory occupancy Top 6 app adb shell dumpsys gfxinfo bluetooth # get fluency related adb shell netcfg # View device network connection adb shell ifconfig wlan0 # get wlan0 IP address and subnet mask
5)。 File operation
Adb shell ls # list the files and folders in the directory adb shell cd sys # switch the current directory to the sys adb shell rename old file name new file name # rename the file name adb shell rm / sys/1.apk # Delete the files in the specified directory adb shell rm-r # delete the folder and its subdirectories under the specified directory adb shell mv the old file name new # Mobile file adb shell chmod 777 1.jpg # setup text Item permissions adb shell mkdir folder name # New folder adb shell cat file # View file contents adb shell cat / data/misc/wifi/*.conf # View WiFi password
6)。 Press the key
Adb shell input keyevent 3 # HOME key adb shell input keyevent 4 # return key adb shell input keyevent 5 # dial adb shell input keyevent 6 # hang up adb shell input keyevent 24 # Volume + adb shell input keyevent 25 # Volume-adb shell input keyevent 26 # Power key adb shell input keyevent 27 # Photo adb shell input keyevent 64 # Open browser adb shell input keyevent 82 # menu key adb shell input keyevent 85 # play / pause adb shell input keyevent 86 # stop playback Adb shell input keyevent 87 # play the next adb shell input keyevent 88 # play the previous adb shell input keyevent 122.Move the cursor to the beginning of the line or the top of the list adb shell input keyevent 122.Move the cursor to the end of the line or the bottom of the list adb shell input keyevent 126. resume playback adb shell input keyevent 127. pause playback adb shell input keyevent 164Mute adb shell input keyevent 176Open system setup adb shell input keyevent 187toggle Application adb shell Input keyevent 207Open contacts adb shell input keyevent 208Open Calendar adb shell input keyevent 209Open Music adb shell input keyevent 220Open Calculator adb shell input keyevent 220O reduce screen brightness adb shell input keyevent 221improve screen brightness adb shell input keyevent 223 # hibernate adb shell input keyevent 224 # illuminate screen adb shell input keyevent 231 # turn on Voice Assistant adb shell input keyevent 276 # Let the system hibernate if there is no wakelock
7)。 Click and swipe the screen
Adb shell input tap 100300 # Click adb shell input swipe 100200100200 # at (100300) to slide down adb shell input swipe 1002001001200 #
8)。 Input
Adb shell input text hello # enter hello
9)。 Battery
Adb shell dumpsys battery
10)。 Device ID
Adb shell settings get secure android_id
11)。 Wireless network
You must obtain Root permission before operating.
Adb shell svc wifi enable # turn on WiFi adb shell svc wifi disable # and close WiFi8. Port forwarding adb forward tcp:60 tcp:70 # transfer port 60 to port 70 adb forward tcp:60 local:logd # transfer port 60 to local:logd 's forwarding 9.Activity manager adb shell am start-n activity path # launch an activity adb shell am start-an android.intent.action.VIEW-d www.baidu.com# launch a default browser open a web page adb shell am start-n com.android.camera/.Camera # start the camera Adb shell am start-an android.intent.action.CALL-d tel:10086# starts dialing 10086 adb shell am startservice-n service # starts service adb shell am stopservice service # stops service adb shell am force-stop bluetooth # kills Bluetooth process adb shell am kill process number # kills process adb shell am broadcast-an android.intent.action.BOOT_COMPLETED # broadcasts device startup to all components 10. Call the package manager adb shell pm list permissions # View permissions adb shell pm list permission-groups # output all known permission groups adb shell pm list permissions-d-g-f # View system dangerous permissions and output all information by group adb shell pm list instrumentation# lists all test packages -f list the APK files of the test package adb shell pm path com.android.bluetooth # View the software installation path adb shell pm list features # output all functions of the system adb shell pm list libraries # Export all libraries supported by the current device adb shell pm list users # all users in the output system adb shell pm enable * # enable a given software package or component (written as "package/class") adb shell pm disable * # disable to The maximum number of users supported by the specified software package or component (written as "package/class") adb shell pm get-max-users # output device is 11. 7. Backup
Adb backup-all # backs up all data
twelve。 Stress test Monkey format: adb shell monkey-v-p your.package.name 500adb shell monkey-v-p com.tencent.weishi 500
The above is the whole content of ADB, through the understanding of ADB, I believe you should be able to program through Python to do a simple version of the automation tool, no longer rely on Airtest.
The above is the working principle and usage of ADB, a simple automation tool for Python programming. Have you learned any knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.