You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ find ./ -name "*.apk" | xargs -I {} ./analyze.sh {} abc
Exception in thread "main" java.lang.IllegalStateException: The tools directory property is not set, please make sure you are executing apkanalyzer. Got /opt/android-sdk-linux/cmdline-tools
#!/bin/bash#outputs number of defined methods, referenced methods, byte size respectively
apkanalyzer dex packages "$1"| head -n 1 | awk '$1 {print $3, $4, $5}'# works just fine
apkanalyzer compare "$1""obf/$1.obf"#causes the error. Verified that parameters are correct. Tried it with literals too.
The text was updated successfully, but these errors were encountered:
$ find ./ -name "*.apk" | xargs -I {} ./analyze.sh {} abc
Exception in thread "main" java.lang.IllegalStateException: The tools directory property is not set, please make sure you are executing apkanalyzer. Got /opt/android-sdk-linux/cmdline-tools
My specific usecase:
relevant part of .yaml file configuration:
analyze.sh script:
The text was updated successfully, but these errors were encountered: