Posts

Showing posts from March, 2020

How to take systrace in android

Image
Install python 2.7 . As systrace does not support python 3.6. Python has its own package manager 'pip'. Use it to install new packages.         download python2.7 install pywin32 and six module on windows. Open power shell in C:/Python27/Scripts path,          pip install pywin32          pip install six   Above packages are not required to be installed on Ubuntu. But if you want other packages of python, we have to install python-pip, however not required for systrace.           sudo apt install python-pip        Then do pip list to see what packages are installed in Ubuntu. Install android studio        Start android studio from the downloaded android studio. That will        have a script to start an...