一、常用的adb命令
1.adb help
2.adb devices 取得當前執行的模擬器/裝置的例項的列表及每個例項的狀態
3.adb install zw.apk 安裝應用程式
4.adb -s 123 install zw.apk 給指定的裝置安裝apk
6.adb push 從本地到遠端,從電腦上傳檔案到手機
7.adb start-server 啟動服務
8.adb kill-server 殺死服務
9.adb shell 必須是root才行 進入linux
10.adb logcat 日誌
二、adb logcat
1、v-verbose(lowest priority)
2、d-debug
3、i-info
4、w-warning
5、e-error
6、f-fatal
7、s-silent(highest priority,on which nothing is ever printed)
下面額過濾語句只顯示優先順序為warning或更高的日誌信心 adb logcat *:w
常用的ADB命令
upload file s from computer to phone adb push download file s from phone to computer adb pop create directory on phone adb shell mkdir remove director...
常用的adb命令
linux系統的shell為使用者提供了使用作業系統的介面,是命令語言 命令解釋程式有程式語言的統稱。shell擁有自已內建的命令集,也能被系統中其他應用程式所呼叫。使用者在提示符下輸入的命令都由shell先解釋後再傳給lunix核心。一 基本命令 adb shell 進入目標裝置的linux sh...
常用的adb命令
1.連線手機 adb devices 二 應用管理 引數解釋 f顯示應用關聯的 apk 檔案 d只顯示 disabled 的應用 e只顯示 enabled 的應用 s只顯示系統應用 3只顯示第三方應用 i顯示應用的 installer u包含已解除安裝應用 包名包含 字串 比如檢視第三方應用 adb...