Skip to content

Commit

Permalink
No apktool requirement for dex analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
mhelwig committed Nov 20, 2017
1 parent f1aec41 commit b0f94ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apk-anal.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def print_results(analysis_results,messages,r2p):
if not apktool:
apktool = args.apktool

if not apktool or not os.path.isfile(apktool):
if (not apktool or not os.path.isfile(apktool)) and not args.dex:
print("[!] Apktool not found. Please adjust path in script or provide it with --apktool")
exit(1)

Expand Down

0 comments on commit b0f94ac

Please sign in to comment.