Skip to content

Install Qualcomm SnapdragonProfiler in Ubuntu22

Qualcomm Snapdragon Profiler is a profiling software that runs on Windows, Mac, and Linux platforms. It connects with Android devices powered by Snapdragon processors over USB and allows developers to analyze CPU, GPU, DSP, memory, power, thermal, and network data.

To install Qualcomm Snapdragon Profiler in Ubuntu 22, you need to follow these steps:

  • Install the latest Mono Framework
sudo apt install ca-certificates gnupg
sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update

sudo apt install mono-devel
  • Install the libc++ C++ Standard library with
sudo apt-get install libc++1
  • Install Java Runtime 1.7.0_79 or later with
sudo apt-get install default-jre
  • Install adb 1.0.40 or later with
sudo apt-get install android-tools-adb
  • Extract the Snapdragon Profiler tarball napdragonProfiler_Release_External_Linux.tar.gz to the desired directory. then execute the run_sdp.sh script from the root Snapdragon Profiler directory.
./run_sdp.sh
Leave a Reply