I'm trying apk tool, following the instruction I have create a folder with
Where
-myapp.apk
is a sample app that I want to decompile
My bat Decompile.bat
is
@echo off
pushd "%~dp0"
apktool if myapp.apk
apktool if framework-res.apk
apktool d myapp.apk
pause
When I start the bat the prompt autoclose after the first lines execution
@echo off
apktool if myapp.apk
apktool if framework-res.apk
the execution of these line is correctly but jump the latet line for some reason
If I try to use apktool from prompt works, so the problem is my bat file but I don't know how to fix it
You need to see how
apktool.bat
is referencingjava
. I downloaded the source from github and this is what's listed:If that's the case then it's assuming that java is in the PATH variable or in the current directory. Maybe add an echo for the path and see why it cannot find it. Alternatively, set the
JAVA_HOME
environment variable and put the full path to java inside ofapktool.bat
.