1. 手机要有root权限2. 下载tcpdump http://www.strazzere.com/android/tcpdump3.tcpdumptcpdump4.adb shell chmod 6755 /data/local/tcpdump5, adb shell, su获得root权限6,...
分类:
移动开发 时间:
2014-06-28 10:43:04
阅读次数:
335
问题:The connection to adb is down, and a severe error has occured. You must restart adb and Eclipse. Please ensure that adb is correctly located ...
分类:
数据库 时间:
2014-06-27 22:03:33
阅读次数:
294
昨天用C++写了个命令行工具,我在Linux下用g++编译的。可以实现无线ADB快速连接安卓设备,不过其他平台需要重新编译源代码。要求计算机已经把adb 添加到系统环境变量中,安卓设备获取root权限并开启无线调试,推荐使用adbWirless。在shell 中输入以下命令都可以连接到192.168...
分类:
移动开发 时间:
2014-06-27 18:16:58
阅读次数:
287
刚才搞了半天想pull,就是pull不成,如图:看出哪里有问题了吗?问题就是我不该在shell里面运行adb pull!正确的做法:在任意一处打开命令行比如图中的桌面,adb pull /sdcard/getroot //这会把getroot拉到桌面adb pull /sdcard...
分类:
数据库 时间:
2014-06-26 19:39:05
阅读次数:
323
必备工具 **adb tools**、**android chrome**先开启手机调试模式adb forward tcp:9919 localabstract:chrome_devtools_remote 成功会提示 * daemon not running. starting it ...
分类:
移动开发 时间:
2014-06-26 12:29:01
阅读次数:
353
Android开发环境搭建时遇到问题的解决方法
错误1:
The connection to adb is down, and a severe error has occured.
[2013-08-31 16:11:56 -com.qihoo.subject]
You must restart adb and Eclipse.
[2013-08-31 16:11:56...
分类:
移动开发 时间:
2014-06-24 23:51:52
阅读次数:
514
1.在Android开发中调用adb命令进行应用安装,将应用安装到 /system/app目录下
/**
* install the app in use adb command,this style is silent
*
*/
private void adbInstallTheAPP(){
//adb push cor...
分类:
移动开发 时间:
2014-06-24 18:04:18
阅读次数:
291
问题:使用adb pull命令从android系统中读取文件失败。显示:Permission denied原因:是由于文件权限原因引起。 使用ls -l命令查看android系统中的文件权限为: -rw-rw---- app_51 app_51 也就是说,该文件只有app_51用户以及app...
分类:
移动开发 时间:
2014-06-24 14:54:16
阅读次数:
263
在Android平台下做开发,adb总是需要使用到的,同时,因为linux没有windows这样操作傻瓜化,有些东西还是需要自行设置的,否则将会连接不上。
关于这些内容,google也有一定的描述,可以参考http://developer.android.com/tools/device.html
1. 确保设备已经连接正常
首先需要取得root权限,这个没啥说的。然后用...
分类:
移动开发 时间:
2014-06-22 19:47:37
阅读次数:
258
adb的全称为Android Debug Bridge,就是起到调试桥的作用。通过adb我们可以在Eclipse中方面通过DDMS来调试Android程序,当我们运行Eclipse时adb进程就会自动运行。
adb命令
1. remount 重新挂载系统分区,使系统分区重新可写
adb remount
2. root 获取管理员权限
adb root
3. d...
分类:
数据库 时间:
2014-06-22 06:11:47
阅读次数:
366