Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa8e8c4f authored by Amith Yamasani's avatar Amith Yamasani Committed by android-build-merger
Browse files

Don't inform usage stats of interaction for a toast am: 43caafa2

am: 0775c2e2

Change-Id: I3ee09b516288baca8eab2fb88ea905f91c042610
parents 031facb5 0775c2e2
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -20703,8 +20703,10 @@ public final class ActivityManagerService extends ActivityManagerNative
                isInteraction = nowElapsed > app.fgInteractionTime + SERVICE_USAGE_INTERACTION_TIME;
                isInteraction = nowElapsed > app.fgInteractionTime + SERVICE_USAGE_INTERACTION_TIME;
            }
            }
        } else {
        } else {
            isInteraction = app.curProcState
            // If the app was being forced to the foreground, by say a Toast, then
                    <= ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND;
            // no need to treat it as an interaction
            isInteraction = app.forcingToForeground == null
                    && app.curProcState <= ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND;
            app.fgInteractionTime = 0;
            app.fgInteractionTime = 0;
        }
        }
        if (isInteraction && (!app.reportedInteraction
        if (isInteraction && (!app.reportedInteraction