We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The command dumpsys window windows | grep mCurrentFocus does not return anything on Android 13.
dumpsys window windows | grep mCurrentFocus
Because of this the function get_current_app_focus does only output Device might be locked... (mCurrentFocus=).
get_current_app_focus
Device might be locked... (mCurrentFocus=)
The command dumpsys activity activities | grep -E 'mCurrentFocus|mFocusedApp' may be analternative at least it gives me a result on Android 13.
dumpsys activity activities | grep -E 'mCurrentFocus|mFocusedApp'
The text was updated successfully, but these errors were encountered:
@jpstotz thank you for reporting this bug.
The Frida API has evolved and currently has a way to get the 'current app'. I've pushed a new update incorporating this in commit d7a1e89
I still need a way to grab the current activity, so I'm using your command dumpsys activity activities.
dumpsys activity activities
Going to test it further in case it breaks some other things I'm unaware off.
Cheers!
Sorry, something went wrong.
No branches or pull requests
The command
dumpsys window windows | grep mCurrentFocus
does not return anything on Android 13.Because of this the function
get_current_app_focus
does only outputDevice might be locked... (mCurrentFocus=)
.The command
dumpsys activity activities | grep -E 'mCurrentFocus|mFocusedApp'
may be analternative at least it gives me a result on Android 13.The text was updated successfully, but these errors were encountered: