wip
This commit is contained in:
parent
88670183eb
commit
190a8a8690
5 changed files with 38 additions and 20 deletions
|
|
@ -14,8 +14,6 @@ dependencies = [
|
|||
]
|
||||
|
||||
|
||||
[project.optional-dependencies]
|
||||
grodd = ["grodd-runner @ git+ssh://git@gitlab.inria.fr/CIDRE/malware/grodd-runner.git"]
|
||||
[build-system]
|
||||
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
from pathlib import Path
|
||||
import time
|
||||
|
||||
try:
|
||||
from grodd_runner import grodd_runner # type: ignore
|
||||
|
|
@ -14,6 +15,7 @@ def explore_app(
|
|||
android_sdk: Path | None = None,
|
||||
):
|
||||
if USE_GRODD:
|
||||
time.sleep(5) # let the app load
|
||||
grodd_runner(
|
||||
"grodd", device, timeout=300, package=package, android_sdk=android_sdk
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue