21 lines
173 B
Bash
Executable File
21 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
|
|
printf "\nInstalling Jadx..\n"
|
|
|
|
|
|
git clone https://github.com/skylot/jadx.git
|
|
|
|
|
|
cd jadx
|
|
|
|
./gradlew dist
|
|
|
|
|
|
#export PATH=$PATH:path/to/build/jadx/bin/jadx
|
|
|
|
|
|
|
|
|