- Mastering Android Development with Kotlin
- Milo? Vasi?
- 170字
- 2021-07-02 15:20:52
Android Debug Bridge
To access devices, you will use the adb command executed from the terminal. We will take a look into the common cases.
Listing all devices:
adb devices
Console output:
List of devices attached emulator-5554 attached emulator-5555 attached
Obtaining shell access to device:
adb shell
Accessing a specific device instance:
adb -s emulator-5554 shell
Where -s represents device source.
Copying a file from and to a device:
adb pull /sdcard/images ~/images adb push ~/images /sdcard/images
Uninstalling an application:
adb uninstall <package.name>
One of the greatest features of adb is that you can access it through telnet. Use telnet localhost 5554 to connect to your emulator device. Terminate your session using the quit or exit command.
Let's play with adb:
- Connect to device:
telnet localhost 5554
- Change the power level:
power status full power status charging
- Or simulate a call:
gsm call 223344556677
- Send an SMS:
sms send 223344556677 Android rocks
- Set geolocation:
geo fix 22 22
With adb, you can also take a screenshot or record a video!
推薦閱讀
- Mastering Entity Framework Core 2.0
- 深入淺出Java虛擬機:JVM原理與實戰
- HTML5+CSS3基礎開發教程(第2版)
- 從0到1:HTML+CSS快速上手
- Java游戲服務器架構實戰
- Hadoop+Spark大數據分析實戰
- HTML5+CSS3網站設計基礎教程
- 高級語言程序設計(C語言版):基于計算思維能力培養
- AppInventor實踐教程:Android智能應用開發前傳
- Getting Started with Laravel 4
- R語言與網絡輿情處理
- Unity 5.X從入門到精通
- 你真的會寫代碼嗎
- Laravel Design Patterns and Best Practices
- C++ Data Structures and Algorithm Design Principles