mapbox-maps-flutter icon indicating copy to clipboard operation
mapbox-maps-flutter copied to clipboard

E/FrameEvents(27058): updateAcquireFence: Did not find frame.

Open securexperts opened this issue 2 years ago • 3 comments

Hello,

When I open on the Demo App "Animated route line" on Android devices, I get tons of the following Error

E/FrameEvents(27058): updateAcquireFence: Did not find frame.

I also get this on Full Screen map but only when I move/resize the map by gestures

How can I hide this Error or fix it.

Thanks

Roman

securexperts avatar May 08 '23 19:05 securexperts

It seems that this is nothing to worry about (https://github.com/flutter/flutter/issues/104268#issuecomment-1134964433). Since it's still really annoying in the logs we filter it out using filter techniques provided by VSCode/Android Studio.

Android Studio Logcat:

-message:"updateAcquireFence: Did not find frame."

VSCode:

!updateAcquireFence: Did not find frame.

adeveloper-wq avatar May 09 '23 08:05 adeveloper-wq

I get this error on full screen map even when I am not moving the map

EsbenSoeltoft avatar Dec 26 '24 12:12 EsbenSoeltoft

This issue spams the logs and the terminal if you do "Flutter run --debug". I traced it down to turning the puck on / off as listed below.

LocationComponentSettings(
	enabled: false					// TODO - true - show user's position | false - remove spamming console during debug
	, showAccuracyRing: true
	, puckBearingEnabled: true
)

penhorwood avatar Sep 24 '25 02:09 penhorwood