adb(Android Debug Bridge)是android sdk里的一个工具。
可以用来运行设备shell命令
计算机和设备之间上传和下载文件
可将apk文件安装到安卓机设备上
adb 命令
https://developer.android.com/studio/command-line/adb.html#IntentSpec
adb shell 命令
https://developer.android.com/studio/command-line/shell.html#shellcommands
adb shell 命令包括am(activity manager)和pm(package manager)
关于一些am命令的介绍:
|
|
接下来介绍pm命令,pm全称package manager,你能使用pm命令去模拟Android行为或者查询设备上的应用等,当你在adb shell命令下执行pm命令:
pm
你也可以在adb shell前执行pm命令:
adb shell pm uninstall com.example.MyApp
关于一些pm命令的介绍:
|
|
2017/03/06 update
使用adb命令录屏
adb的screenrecord命令。需要(API level 19)及以上,即Android4.4及以上。
录制命令
|
|
保存为在sdcard目录下的demo.mp4文件。
把录制的视频转成Gif( https://ezgif.com/ )。
2017/03/08 update
Installing ADB on MAC OS X(mac系统安装adb命令)
Using Homebrew
Install homebrew
1ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"Install adb
1brew install android-platform-toolsStart using adb
1adb devices