RE env for inspecting APKs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
227 B

  1. #!/bin/bash
  2. #
  3. printf "Installing prereqs including python3, pip, dev-tools, and apktool..\n"
  4. sudo apt install python3 -y
  5. sudo apt install python3-pip -y
  6. sudo apt install build-essential -y
  7. sudo apt install apktool -y