LoginSignup
1
1

More than 3 years have passed since last update.

Androidでsystrace

Posted at

Androidのsystrace取るのに少しハマったのでメモします。

実行手順

手順はAndroid developersに記載されている通りなのですが、pythonは2.7系でないとダメでした。
参考:Windowsにpythonをインストール

不足パッケージの追加

また、pywin32をインストールしないと下記のエラーとなります。
ImportError: No module named win32con

pywin32は下記のコマンドでインストールできます。
pip install pywin32

pipはインストールしたpythonのScriptsフォルダ内にあり、pathを通していればそのまま使えます。
ただし、proxy環境では、オプションでproxyを設定する必要があります。
pip --proxy=xxxx.com:80 install pywin32

1
1
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
1
1