am(activity manager)是管理activity的工具,可以启动activity、服务、发送广播、关闭窗口。启动activity:adb shell am start [options] :可以在app的AndroidManifest.xml中得到[options]:-n 类名,-a ...
分类:
数据库 时间:
2015-08-11 15:54:00
阅读次数:
185
1、通过apt-get安装adb sudo add-apt-repository ppa:nilarimogard/webupd8 sudo apt-get update sudo apt-get install android-tools-adb 将android设备连接至电脑,执行adb shell会提示“error: device not fou...
分类:
数据库 时间:
2015-08-11 08:41:53
阅读次数:
211
1、如何把log保存到SD卡方便调试
通过如下方法在不连接USB线操作手机发生问题时也能查看log。
a. 连接USB
b. 执行adb shell登到手机
在Android studio中的Terminal里输入
c. logcat -v time -f /sdcard/log.log *:W &
2、Android studio查看sha1和MD5的方法
在A...
分类:
移动开发 时间:
2015-08-10 20:07:10
阅读次数:
125
第一种情况:确实用多个设备或者模拟器解决办法:(指定连接某一个设备或者模拟器)1、获取模拟器/设备列表adb devices2、指定device来执行adb shelladb -s devicename shell例如:adb -s emulator-5554 shell在多device的时候,执行...
分类:
数据库 时间:
2015-08-07 12:44:20
阅读次数:
188
以adb remount为例
首先运行命令:
adb remount
然后
adb shell dmesg -C | grep avc
[ 113.241627] (0)[281:logd.auditd]type=1400 audit(1438851627.212:214): avc: denied { ioctl } for pid=5684 comm="adbd...
分类:
移动开发 时间:
2015-08-06 18:23:56
阅读次数:
306
最近在使用bat,遇到了这样的问题,获取adb shell cat命令之后的所有返回值,查了很长时间,才找到,现分享给大家。举例如下:@for /f "tokens=*" %%i in ('adb shell cat /sys/devices/system/cpu/cpu0/cpufreq/scal...
分类:
其他好文 时间:
2015-08-04 19:02:34
阅读次数:
383
1、adb shell netcfg
guoqifa@guoqifa:~$ adb shell netcfg
wlan0 UP 172.29.107.21/21 0x00001043 00:08:22:7e:a1:fe
tunl0 DOWN 0.0.0...
分类:
其他好文 时间:
2015-08-03 19:14:03
阅读次数:
151
!/bin/bashMAX_TO_UNINSTALL=10;function list_installed {
adb shell pm list packages | grep “$1” | sed s/package://g | tr -d ‘\r’
}function count_installed {
echo $1 | wc -w
}function uninsta...
分类:
其他好文 时间:
2015-08-03 10:16:17
阅读次数:
112
在SD卡上创建和删除文件夹 基本步骤: (1):在控制台中输入adb shell命令,进入shell控制台。 (2):在shell控制台中输入cd sdcard 命令,进入SD卡中。 (3):在shell控制台中输入ls -al 命令,查看sd卡中包含的全部文件和文件夹。 (4...
分类:
其他好文 时间:
2015-08-01 16:59:00
阅读次数:
181
adbshell--help说明:4.4以上设备可以用来录制视频,不需要root权限,极为方便。E:\workspace\TaoParking\script>adbshellscreenrecord--helpUsage:screenrecord[options]<filename>Recordsthedevice‘sdisplaytoa.mp4file.Options:--sizeWIDTHxHEIGHTSetthevideosize,..
分类:
数据库 时间:
2015-07-29 19:36:23
阅读次数:
212