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
From my understanding this spawns the process and attaches the script while it's already running.
What I want to do, is the equivalent to the CLI command: frida -U --no-pause -l script.js -f com.package.
Is this possible?
I already looked into SpawnOptions for spawn(), but didn't manage to utilize them (e.g. getting errors like [Error: The 'argv' option is not supported when spawning Android apps] for most).
The text was updated successfully, but these errors were encountered:
Hopefully related, I'd like to attach a script before Android has done a bunch of startup stuff. It seems that processes spawned by Frida used to be paused by default -- frida/frida#2277. Is there an option to spawn a process in a paused state?
I am able to start an Android application and attach a script to it like this:
From my understanding this spawns the process and attaches the script while it's already running.
What I want to do, is the equivalent to the CLI command:
frida -U --no-pause -l script.js -f com.package
.Is this possible?
I already looked into
SpawnOptions
forspawn()
, but didn't manage to utilize them (e.g. getting errors like[Error: The 'argv' option is not supported when spawning Android apps]
for most).The text was updated successfully, but these errors were encountered: