adb 命令
cdm 進入到安裝目錄 cd c:\my\genymotion\tools
adb devices 檢查電腦上連線的裝置
adb install 安裝apk檔案 (adb -s 裝置id install apk檔案目錄)
如:adb -s 192.168.64.102:5555 install d:\apk\ecmobile3.2.apk
如:aapt d badging d:\apk\ecmobile3.2.apk (aapt d badging 檢視包名)
adb -s 192.168.64.102:5555 uninstall com.insthub.ecmobile
adb shell 進入android系統中
如:adb -s 192.168.64.102:5555 shell (以root 使用者登入android系統)
adb pull 從android系統取檔案 (adb -s 裝置id pull [android系統上路徑] [取到電腦上路徑]
如:adb -s 192.168.64.102:5555 pull
/data/data/com.insthub.ecmobile/shared_prefs/userinfo.xml d:\apk\userinfo.xml
adb push 將檔案上傳到android系統中 (adb -s 裝置id push [電腦上路徑] [android系統上路徑]
如:adb -s 192.168.64.120:5555 push
d:\apk\userinfo.xml /data/data/com.insthub.ecmobile/shared_prefs/userinfo.xml
android 基礎 adb常用命令
檢視版本 adb version 檢視連線裝置 adb devices 安裝乙個 apk adb install 如 adb install demo.apk 如果不是當前目錄,則後面要跟路徑名 adb install users storm temp demo.apk 保留資料和快取檔案,重新安裝...
adb命令 adb shell am命令
幾個啟動指定程式activity的例子 am start n com.android.music com.android.music.musicbrowseractivity am start n com.android.music com.android.music.videobrowseract...
adb命令教程
1.檢視裝置情況 adb devices 該命令返回的結果為連線的android裝置序列號及狀態。序列號用於唯一標示一台android裝置,通常為 裝置名稱 埠號 2.獲取裝置的sn號 adb get serialno 3.安裝軟體 adb install apk apk需要包含軟體包的路徑 這個命...