博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android_adb详解
阅读量:5296 次
发布时间:2019-06-14

本文共 703 字,大约阅读时间需要 2 分钟。

adb定义:

adb(android debug bridge)是android系统中的一种命令行工具,通过它可以和android设备或模拟器通信。

adb工具位置:

<path-to-sdk>/tools/adb

adb源码位置:

<path-to-sourcecode>/system/core/adb

adb组成及实现原理:

adb本身是一个客户端服务器应用程序,由3个组件组成,Client, Server, Daemon,如下图

adb命令格式:
adb [-d|-e|-s <serialNumber>] <command>

adb命令分类:

Target device:-d/-e/-s <serialNumber>

General:devices/help/version

Debug:logcat [option] [filter-specs]/bugreport/jdwp

Data:install <path-to-apk>/pull <remote> <local>/push <local> <remote>

Ports and Networking:forward <local> <remote>/ppp <tty> [parm]...

Scripting:get-serialno/get-state/wait-for-device

Server:start-server/kill-server

Shell:shell/shell [shellCommand]

转载于:https://www.cnblogs.com/BlogNetSpace/p/3966543.html

你可能感兴趣的文章
简单【用户输入验证】
查看>>
python tkinter GUI绘制,以及点击更新显示图片
查看>>
HDU4405--Aeroplane chess(概率dp)
查看>>
CS0103: The name ‘Scripts’ does not exist in the current context解决方法
查看>>
20130330java基础学习笔记-语句_for循环嵌套练习2
查看>>
Spring面试题
查看>>
窥视SP2010--第一章节--SP2010开发者路线图
查看>>
MVC,MVP 和 MVVM 的图示,区别
查看>>
C语言栈的实现
查看>>
代码为什么需要重构
查看>>
TC SRM 593 DIV1 250
查看>>
SRM 628 DIV2
查看>>
2018-2019-2 20165314『网络对抗技术』Exp5:MSF基础应用
查看>>
Python-S9-Day127-Scrapy爬虫框架2
查看>>
使用Chrome(PC)调试移动设备上的网页
查看>>
使用gitbash来链接mysql
查看>>
SecureCRT的使用方法和技巧(详细使用教程)
查看>>
右侧导航栏(动态添加数据到list)
查看>>
81、iOS本地推送与远程推送详解
查看>>
虚拟DOM
查看>>