Frida ( Accessing android underlayers) #3814
-
|
Frida ( Accessing android underlayers) |
Beta Was this translation helpful? Give feedback.
Answered by
ndonkoHenri
Jul 2, 2026
Replies: 1 comment 1 reply
-
|
Frida can't run inside a Flet mobile app — this is fundamental to what Frida is, not a packaging gap:
Your title mentions "accessing Android underlayers" — for that, the supported approach is pyjnius, which lets you call Android Java/system APIs directly from Python. That's the right tool for accessing platform internals from a Flet app. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ndonkoHenri
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Frida can't run inside a Flet mobile app — this is fundamental to what Frida is, not a packaging gap:
ptrace/task_for_pidor spawn-and-inject other processes — the OS sandbox forbids it. So even a perfectly built wheel would be a dead import in a Flet app.Your title mentions "accessing Android underlayers" — for that, the supported approach is pyjnius, which lets you call Android Java…