Android Debug Bridge Command
7443 ワード
1 . 複数の携帯電話の問題開発時にパソコンがテスターと自分の携帯電話に接続され、adbコマンド
この場合、
ある携帯電話でコマンドを実行するには、デバイス番号を指定する必要があります.
私は時々デバイスのシリアル番号が分からなかったり、他の人の携帯電話まで操作したりして、次のコマンドを書いて、最後にアクセスした携帯電話のデバイスでコマンドを実行します.
出力携帯電話adb push charles-ssl-proxying-certificate 111にファイルをアップロードする.pem/sdcard/ コンピュータadb pull/sdcard/charles-ssl-proxying-certificate 111にファイルをダウンロードする.pem ./cert/ アプリケーションのスレッドを表示する
合計51スレッドオープン
➜adb get-serialno
を入力するとエラーが発生します.➜adb get-serialno
error: more than one device/emulator
この場合、
adb devices
を使用して、どのデバイスが最後にアクセスしたデバイスが一番前にあるかを確認する必要があります.➜adb devices
List of devices attached
375013eb device
TA004031ND device
ある携帯電話でコマンドを実行するには、デバイス番号を指定する必要があります.
➜ adb -s 375013eb get-serialno
375013eb
私は時々デバイスのシリアル番号が分からなかったり、他の人の携帯電話まで操作したりして、次のコマンドを書いて、最後にアクセスした携帯電話のデバイスでコマンドを実行します.
➜ adb -s `adb devices |sed -n "2,1p" |awk '{print $1}'` get-serialno
375013eb
出力
375013eb
、別の携帯電話を抜いて挿入し、出力TA004031ND
2 . 一番前の画面がどのactivityなのかを表示します.製品や運営が携帯電話を持って画面のことを聞くことがあります.新しい項目に触れた場合、各画面がどのactivityに対応しているのか覚えていません.実は長い間引き継いでいても覚えているとは限らない.ハハ.コードを通じて探すのに時間がかかりすぎて、しかも異なるアカウントが異なるActivityを踊る可能性があります.論理が多すぎて、間違いを探しやすいです.次のコマンドで、現在のインタフェースがどのactivityに対応しているかを直接見つけることができます.adb shell dumpsys activity activities | sed -En -e '/Running activities/,/Run #0/p'
➜ adb -s `adb devices |sed -n "2,1p" |awk '{print $1}'` shell dumpsys activity activities | sed -En -e '/Running activities/,/Run #0/p'
Running activities (most recent first):
TaskRecord{d96bc0b #10580 A=com.medium.reader U=0 sz=2}
Run #5: ActivityRecord{b7f4a69 u0 com.medium.reader/com.medium.android.donkey.read.ReadPostActivity t10580}
Run #4: ActivityRecord{9bb9dbf u0 com.medium.reader/com.medium.android.donkey.read.HomeActivity3 t10580}
TaskRecord{f4035c9 #10582 A=com.quora.android U=0 sz=1}
Run #3: ActivityRecord{7991203 u0 com.quora.android/.QuoraActivity t10582}
TaskRecord{8c3d501 #10579 I=com.google.android.googlequicksearchbox/com.google.android.apps.gsa.searchnow.SearchNowActivity U=0 sz=1}
Run #2: ActivityRecord{6773550 u0 com.google.android.googlequicksearchbox/com.google.android.apps.gsa.searchnow.SearchNowActivity t10579}
TaskRecord{6f30de7 #10577 A=com.android.vending U=0 sz=1}
Run #1: ActivityRecord{41eaf9d u0 com.android.vending/com.google.android.finsky.activities.MainActivity t10577}
TaskRecord{4e10e9d #10225 A=com.android.incallui U=0 sz=1}
Run #0: ActivityRecord{8c3ad50 u0 com.android.incallui/.InCallActivity t10225}
Running activities (most recent first):
TaskRecord{d656b36 #10152 A=com.android.systemui U=0 sz=1}
Run #1: ActivityRecord{9187c94 u0 com.android.systemui/.recents.RecentsActivity t10152}
TaskRecord{157e7f8 #10143 A=com.oneplus.hydrogen.launcher U=0 sz=1}
Run #0: ActivityRecord{bfe1ca0 u0 com.oneplus.hydrogen.launcher/.Launcher t10143}
➜ adb shell ps -t |grep com.stack
u0_a107 10253 715 1850940 105484 SyS_epoll_ 0000000000 S com.stackexchange.marvin
➜ adb shell ps -t |grep u0_a107
u0_a107 10253 715 1859196 106940 SyS_epoll_ 0000000000 S com.stackexchange.marvin
u0_a107 10259 10253 1859196 106940 futex_wait 0000000000 S Jit thread pool
u0_a107 10260 10253 1859196 106940 do_sigtime 0000000000 S Signal Catcher
u0_a107 10261 10253 1859196 106940 futex_wait 0000000000 S ReferenceQueueD
u0_a107 10262 10253 1859196 106940 futex_wait 0000000000 S FinalizerDaemon
u0_a107 10263 10253 1859196 106940 futex_wait 0000000000 S FinalizerWatchd
u0_a107 10264 10253 1859196 106940 futex_wait 0000000000 S HeapTaskDaemon
u0_a107 10265 10253 1859196 106940 binder_thr 0000000000 S Binder:10253_1
u0_a107 10266 10253 1859196 106940 binder_thr 0000000000 S Binder:10253_2
u0_a107 10269 10253 1859196 106940 futex_wait 0000000000 S Profile Saver
u0_a107 10272 10253 1859196 106940 futex_wait 0000000000 S GAThread
u0_a107 10274 10253 1859196 106940 futex_wait 0000000000 S GAC_Executor[0]
u0_a107 10275 10253 1859196 106940 futex_wait 0000000000 S Queue
u0_a107 10276 10253 1859196 106940 futex_wait 0000000000 S Queue
u0_a107 10277 10253 1859196 106940 futex_wait 0000000000 S Queue
u0_a107 10278 10253 1859196 106940 futex_wait 0000000000 S Queue
u0_a107 10279 10253 1859196 106940 futex_wait 0000000000 S Queue
u0_a107 10281 10253 1859196 106940 binder_thr 0000000000 S Binder:10253_3
u0_a107 10285 10253 1859196 106940 futex_wait 0000000000 S Crashlytics Exc
u0_a107 10287 10253 1859196 106940 unix_strea 0000000000 S TcmReceiver
u0_a107 10289 10253 1859196 106940 SyS_epoll_ 0000000000 S websocket-threa
u0_a107 10290 10253 1859196 106940 poll_sched 0000000000 S Thread-8
u0_a107 10293 10253 1859196 106940 futex_wait 0000000000 S AsyncTask #1
u0_a107 10295 10253 1859196 106940 futex_wait 0000000000 S GAC_Executor[1]
u0_a107 10296 10253 1859196 106940 futex_wait 0000000000 S AsyncTask #2
u0_a107 10297 10253 1859196 106940 SyS_epoll_ 0000000000 S RenderThread
u0_a107 10298 10253 1859196 106940 futex_wait 0000000000 S pool-1-thread-1
u0_a107 10301 10253 1859196 106940 futex_wait 0000000000 S AsyncTask #3
u0_a107 10302 10253 1859196 106940 futex_wait 0000000000 S OkHttp Connecti
u0_a107 10303 10253 1859196 106940 futex_wait 0000000000 S pool-4-thread-1
u0_a107 10305 10253 1859196 106940 futex_wait 0000000000 S Crashlytics Tra
u0_a107 10311 10253 1859196 106940 futex_wait 0000000000 S OkHttp Connecti
u0_a107 10314 10253 1859196 106940 futex_wait 0000000000 S pool-1-thread-2
u0_a107 10318 10253 1859196 106940 futex_wait 0000000000 S RxComputationTh
u0_a107 10319 10253 1859196 106940 futex_wait 0000000000 S RxComputationTh
u0_a107 10320 10253 1859196 106940 futex_wait 0000000000 S Retrofit-Idle
u0_a107 10323 10253 1859196 106940 SyS_epoll_ 0000000000 S Picasso-Stats
u0_a107 10324 10253 1859196 106940 SyS_epoll_ 0000000000 S Picasso-Dispatc
u0_a107 10325 10253 1859196 106940 futex_wait 0000000000 S Picasso-refQueu
u0_a107 10326 10253 1859196 106940 futex_wait 0000000000 S Picasso-Idle
u0_a107 10327 10253 1859196 106940 futex_wait 0000000000 S Picasso-Idle
u0_a107 10329 10253 1859196 106940 futex_wait 0000000000 S Picasso-Idle
u0_a107 10331 10253 1859196 106940 futex_wait 0000000000 S hwuiTask1
u0_a107 10332 10253 1859196 106940 futex_wait 0000000000 S pool-1-thread-3
u0_a107 10335 10253 1859196 106940 poll_sched 0000000000 S ackexchange.com
u0_a107 10336 10253 1859196 106940 futex_wait 0000000000 S Okio Watchdog
u0_a107 10337 10253 1859196 106940 futex_wait 0000000000 S OkHttp SpdyConn
u0_a107 10338 10253 1859196 106940 futex_wait 0000000000 S pool-1-thread-4
u0_a107 10340 10253 1859196 106940 futex_wait 0000000000 S disconnect chec
u0_a107 10345 10253 1859196 106940 poll_sched 0000000000 S ww.gravatar.com
u0_a107 10352 10253 1859196 106940 futex_wait 0000000000 S hwuiTask2
u0_a107 10354 10253 1859196 106940 poll_sched 0000000000 S cdn.sstatic.net
u0_a107 10356 10253 1859196 106940 futex_wait 0000000000 S Timer-0
u0_a107 10357 10253 1859196 106940 futex_wait 0000000000 S Timer-1
u0_a107 10358 10253 1859196 106940 futex_wait 0000000000 S Timer-2
u0_a107 10359 10253 1859196 106940 futex_wait 0000000000 S Timer-3
合計51スレッドオープン
➜ adb shell ps -t |grep u0_a107|wc -l
51