Reputation: 185
what should i do,
when i do frida -U -f Telegram -l freda.js — -no-whale
and it exits like
Failed to spawn: unable to find process with name 'o-paus'
Upvotes: 2
Views: 6321
Reputation: 42585
You can only start an app using it's package name but in your example you are using the app name "Telegram". The app name can only be used for attaching to running processes.
Considering this the correct command is:
frida -U -f org.telegram.messenger -l freda.js --no-pause
Upvotes: 2