diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 61c5fee..da2ae5d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,9 +5,8 @@ on: - cron: '0 5 * * 1' push: branches: [ "main" ] - # Publish semver tags as releases. paths: - - 'scripts.sh' + - 'setup.sh' - 'Dockerfile' - '.github/workflows/build.yml' diff --git a/Dockerfile b/Dockerfile index 2a2ed1c..88d2731 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,9 @@ RUN pacman -Syu --noconfirm \ git \ python \ python-pip \ + jre-openjdk \ jadx \ + which \ unzip RUN python -m venv /data/.venv && \ . /data/.venv/bin/activate && \ diff --git a/script.sh b/script.sh index 7c51110..12efb74 100755 --- a/script.sh +++ b/script.sh @@ -26,7 +26,6 @@ ProcessApp() if [ -f $1/$1.xapk ]; then unzip -o $1/$1.xapk -d $1 fi - echo "Unzipping $1.apk" jadx --deobf --show-bad-code -d $1 $1/$1.apk find $1 -type f -exec md5sum {} >> $1/$1.apk.jadx.txt \; for FILE in $1/*.apk