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

#!/bin/bash
#
printf "Installing prereqs including python3, pip, dev-tools, and apktool..\n"
sudo apt install python3 -y
sudo apt install python3-pip -y
sudo apt install build-essential -y
sudo apt install apktool -y