Android中常用的cmd命令

1、查看某一个Apk的包信息(aapt .exe在android sdk中:build-tools\23.0.2\aapt.exe)

aapt dump badging  file_path.apk  > a.txt

(>a.txt是将cmd控制台的信息导出到a.txt)
2、启动某一个app
adb shell am start 包名/启动activity 如:

adb shell am start com.zdk.mg.abc/com.zdk.mg.abc.ui.LaunchActivity

3、查看某一个sdcard 路径的文件,删除指定文件 rm sfile

-> adb shell
-> cd sdcard
-> cd Android/data/.com.weigutech.security.dexopt/files/optedDex
-> rm data@[email protected]@[email protected]

4、git上新建branch后,本地拉取

git pull
git branch -a

你可能感兴趣的:(Android中常用的cmd命令)