"opservice is null false" message in Debug console when tap screen

Viewed 4235

We are creating a simple App with Flutter, and when I try to debug in an Android device (not an emulator), I get this message in my debug console in VSCode (several times):

I/Surface (17948): opservice is null false

It appears at random times when I tap something in the App, in mobile screen.

Do you know why we get this message and how to solve it?

1 Answers

when you attach your phone, debugger is not debuging your app only, maybe there are apps built using flutter in your phone that the debugger also shows thier logs, try to attach your phone without running the app and watch the log.

Related