没耐心看这个Pi支持的无线网卡列表: http://elinux.org/RPi_VerifiedPeripherals#USB_Wi-Fi_Adapters 我就用自己之前买的一的斐讯的USB无线网卡,很小,35元还特么包邮!用的也很好! 插上去就能识别,而且,我是直接用USB线插在笔记上取的电,...
分类:
其他好文 时间:
2014-07-10 14:27:45
阅读次数:
200
在服务器上启动模拟器的时候加了--http-proxy,但是不起作用。所以搜了下面的方法
四种方法:
一:将网络连接代理设置写入配置数据库 (适合启动模拟器无界面)
1、通过命令行或者通过双击emulatoer可执行文件,打开模拟器
2、在命令行执行adb shell 打开android的控制台 (确保环境变量设置正确,即已经把Android_SDK/tools 添加到了PATH(L...
分类:
移动开发 时间:
2014-06-27 23:34:34
阅读次数:
520
问题: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
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