ADB

Install ADB

 brew install android-platform-tools

Install APK

adb install name.apk

Push file

adb push /path/from /path/to

Shell

adb shell

Pulling an App with ADB

adb shell pm list packages
adb shell pm path com.xxx.xxx
adb pull /path/to/app.apk

Changing proxy settings

adb shell settings put global http_proxy <address>:<port>

Deleting the settings

Add Burp certificate as a system certificate

Source: https://0x00sec.org/t/reversing-hackex-an-android-game/16243

Enable debugging

You’ll need to edit the AndroidManifest.xml generated file, adding theandroid:debuggable="true" attribute to its application XML node:

Screen recording

Screenshot

Install xapk

Unzip then:

Last updated

Was this helpful?