0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AndroidとiOSですぐに使えるコマンドなど

Posted at

■iOS
[debug] @@ 【 @self.dynamicType@ %B 】hitcount:%H

lldb
n ステップオーバー
s ステップ実行
c 再開

po 変数表示

command ,で設定
command ↓で開く
command ↑で上へ移動
https://www.msng.info/archives/2012/02/keyboard-shortcuts-for-mac-beginners.php

■Android
adb logcat -c ; adb logcat -s debugTst:* AndroidRuntime:E

■各種コマンド
adb shell dumpsys activity | grep -B 1 "Run #[0-9]*:"
->アクティビティを確認
adb shell pm list packages | grep "rakuten"
->パッケージ名確認
adb shell am force-stop jp.co.rakuten.comm.dugong.app.stg
->プロセスをkill
adb shell ps | grep "rakuten"
->killされたことを確認
adb shell am kill jp.co.rakuten.comm.dugong.app.stg
->効果なし

adb shell dumpsys battery unplug
->充電しない状態にする
adb shell dumpsys battery
->給電状態を確認
adb shell dumpsys battery reset
->給電状態をリセット
adb shell dumpsys activity service KeepAliveService
サービス監視

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?