Last-modified: 2020-03-04 (水) 00:09:40
Android/チートシート

adb

接続

Everything is expanded.Everything is shortened.
  1
  2
-
!
# Android端末をUSB接続しておく
adb shell

ファイル

Everything is expanded.Everything is shortened.
  1
  2
-
!
# コピー
adb pull <src path> <dest path>

再起動

Everything is expanded.Everything is shortened.
  1
 
adb reboot

shell

システム情報

Everything is expanded.Everything is shortened.
  1
  2
  3
  4
  5
-
!
 
-
!
# カテゴリ一覧
dumpsys
 
# 各カテゴリのシステム情報
dumpsys <カテゴリ名>

パッケージ

Everything is expanded.Everything is shortened.
  1
  2
  3
  4
  5
-
!
 
-
!
# パッケージパス一覧
pm list packages -f
 
# パッケージ一覧
dumpsys package

ネットワーク

Everything is expanded.Everything is shortened.
  1
  2
  3
  4
  5
  6
  7
  8
  9
-
!
 
-
!
 
-
!
-
# ソケット状態確認
netstat
 
# 統計
dumpsys netstats detail
dumpsys netstats details full
# プロセスごとの生値
cat /proc/<PID>/net/dev
# linuxでいうところのnetstat -s(windowsでいうところのnetstat -e)は無い

アクティビティ

Everything is expanded.Everything is shortened.
  1
  2
  3
  4
-
!
-
!
# カレント
dumpsys activity top
# 全て
dumpsys activity

サービス

Everything is expanded.Everything is shortened.
  1
  2
-
!
# 一覧
dumpsys -l

その他

開発者モード

Asus ZenFone Max Pro (M2), Android 9

  1. [設定]-[端末情報]-[ソフトウェア情報]
  2. [ビルド番号]を7回タップ
  3. 一階層戻ると、[開発者向けオプション]が表示される
    (機種、OSバージョンによって異なる場合あり)

リカバリモード

  1. 電源を切る
  2. 電源ボタンと音量ボタンを同時長押し
    (機種によって異なる場合あり)

ABI確認

Everything is expanded.Everything is shortened.
  1
 
getprop | grep cpu

SoC確認

Everything is expanded.Everything is shortened.
  1
 
cat /proc/cpuinfo | grep Hardware