Material for workshops on Android Application Pentest
tar -zxvf android-studio-2023.2.1.25-linux.tar.gz
sudo mv android-studio /opt
sudo ln -sf /opt/android-studio/bin/studio.sh /bin/android-studio
android-studio
sudo apt install default-jdk
Download the Linux wrapper script. (Right click, Save Link As apktool)
Download the latest version of Apktool.
Rename the downloaded jar to apktool.jar.
sudo mv apktool /usr/local/bin; sudo mv apktool.jar /usr/local/bin
chmod +x /usr/local/bin/apktool
chmod +x /usr/local/bin/apktool.jar
Try running apktool via CLI.
git clone https://github.com/HTBridge/pivaa.git
The apk is in the folder apks
or get the apk from this repo
The official repo is not maintained anymore but we can still play with the apk
You can find it in this repo
sdk 26
sdk 29
sdk 18
Export the burp cert (video will be shown during workshop on how to)
search "cert" in the settings
Click on "Install cert"
The burp cert should be in downloads after drag and drop
In the latest version of android studio you might not find the network settings in the emulator.
To find them uncheck the box in the settings of android studio (see screenshot below):

Source: stackoverflow