问题: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
抓包准备1. 手机要有root权限2. 下载tcpdump http://www.strazzere.com/android/tcpdump3.adb push c:\wherever_you_put\tcpdump/data/local/tcpdump4.adb shell chmod 6755 ...
分类:
移动开发 时间:
2014-06-27 16:54:19
阅读次数:
320
打开cmd进入安卓 SDK的'Platform tools'输入'adb shell'suPress 'Allow' on device(必须已经root)chmod 777 /data /data/data /data/data/com.application.package(你的包名 也就是sr...
分类:
移动开发 时间:
2014-06-27 16:15:54
阅读次数:
302
[2014-06-26 15:35:42 - app] ------------------------------[2014-06-26 15:35:42 - app] Android Launch![2014-06-26 15:35:42 - app] adb is running normal...
分类:
移动开发 时间:
2014-06-27 15:44:09
阅读次数:
368
刚才搞了半天想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