Skip to content

Commit

Permalink
Update cli.py
Browse files Browse the repository at this point in the history
androguard==4.0.0 doesn't has bytecodes, so to call APK you should use "from androguard.core.apk import APK" instead of "from androguard.core.bytecodes.apk import APK" otherwise you will get  an exception. or you need to set specific androguard version in requirements file
  • Loading branch information
kazo391 authored and ksg97031 committed Dec 19, 2023
1 parent 16e8a9c commit a2b583e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from shutil import which
from pathlib import Path
import click
from androguard.core.bytecodes.apk import APK
from androguard.core.apk import APK
from .logger import logger
from .__version__ import __version__
from .frida_github import FridaGithub
Expand Down

0 comments on commit a2b583e

Please sign in to comment.