Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tqdm = "<=4.66.5"
colorama = "<=0.4.4"
quark-engine = {editable = true,path = "."}
click = "<=8.1.7"
androguard = "==3.4.0a1"
androguard = "==4.1.4"
graphviz = "<=0.18.2"
requests = "<=2.33.0"
plotly = "<=5.4.0"
Expand All @@ -28,7 +28,7 @@ r2pipe = "==1.8.0"
pathvalidate = "==3.2.3"

[requires]
python_version = "3.10"
python_version = ">=3.10"

[pipenv]
allow_prereleases = true
4 changes: 2 additions & 2 deletions quark/core/apkinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
from typing import Dict, List, Optional, Set, Union

from androguard.core.analysis.analysis import MethodAnalysis
from androguard.core.bytecodes.dvm_types import Operand
from androguard.core.dex.dex_types import Operand
from androguard.misc import AnalyzeAPK, get_default_session
from androguard.core.bytecodes.dvm import Instruction45cc, Instruction4rcc, get_kind, Kind
from androguard.core.dex import Instruction45cc, Instruction4rcc, get_kind, Kind

from quark.core.interface.baseapkinfo import BaseApkinfo
from quark.core.struct.bytecodeobject import BytecodeObject
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

required_requirements = [
"prettytable>=1.0.0",
"androguard==3.4.0a1",
"androguard==4.1.4",
"tqdm",
"colorama",
"graphviz",
Expand Down
Loading