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

Resolve issue with sensor listeners continuing to try and send events to Flutter after event channel was shutdown. #84

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

thzero
Copy link

@thzero thzero commented May 4, 2022

Updates to resolve issue with sensor listeners continuing to try and send events to Flutter after event channel was shutdown.

Example of the output from the debug console after the activity was killed. Issue is that the setStreamHandler was using another instances of the FlutterCompassPlugin unnecessarily and then was never calling unregisterListener on the sensorManager to unregister listeners.

This corrects the issue by not creating a new instance of the FlutterCompassPlugin, then calling the unregisterListener in the detach from activity event.

Example of the output from the debug channel..

W/FlutterJNI(17292): Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: hemanthraj/flutter_compass. Response ID: 23
W/FlutterJNI(17292): Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: hemanthraj/flutter_compass. Response ID: 24
W/FlutterJNI(17292): Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: hemanthraj/flutter_compass. Response ID: 25
W/FlutterJNI(17292): Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: hemanthraj/flutter_compass. Response ID: 26
W/FlutterJNI(17292): Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: hemanthraj/flutter_compass. Response ID: 27
W/FlutterJNI(17292): Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: hemanthraj/flutter_compass. Response ID: 28
W/FlutterJNI(17292): Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: hemanthraj/flutter_compass. Response ID:

thzero added 2 commits May 3, 2022 16:38
…nd events even after the event channel was shut down
updates to resolve the issue with the sensor
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.

1 participant