Skip to content
New issue

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

[2661] Fix BroadcastReceiver ANR at ScreenOffTrigger #2732

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

FranAguilera
Copy link

@FranAguilera FranAguilera commented Dec 18, 2024

Resolves #2661

Issue

BroadcastReceiver#onReceive runs by default on the main thread. If onReceive doesn't complete in a timely manner, the system will report an Application Not Responding

We've seen instances of this occurring frequently on internal builds. It seems this could be due to potentially expensive job creation or synchronization of currentJob

Solution

Rely on the current analysisExecutor to run the whole existing start/stop job logic there

Verification

Verified that the the ANR no longer occurs and reporting still completes without issues on one of our main apps (internal release build)

analysisClient.newJob(JobContext(ScreenOffTrigger::class))
currentJob = job
analysisExecutor.execute {
analysisExecutor.execute {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If analysisExecutor.execute runs the task quickly enough, there's a chance that we might dump the heap & freeze the VM before the process has had a chance to report back to system_server, right?

Looks to me like if we want to avoid that, we need to execute with a delay instead"?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Background ANR at ScreenOffTrigger BroadcastReceiver [leakcanary on release]
2 participants