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

Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: audio_manager. Response ID: 0 #86

Open
gauravdv opened this issue Nov 11, 2021 · 0 comments

Comments

@gauravdv
Copy link

when app remove from background.

Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: audio_manager. Response ID: 0

I tried what came my mind, but I could not get something.

//1.
@OverRide
didChangeAppLifecycleState(AppLifecycleState state) {
if (AppLifecycleState.detached == state) {
print("detached"); // it is working I can see this write on console.
await AudioManager.instance.release(); // manually release when no longer needed
}
}
@OverRide
void initState() {
super.initState();
WidgetsBinding.instance.addObserver(this);}

//2
I wrote on dispose() method but it also did not work.

//3
I wrapped my build function with "WillPopScope" but it didn't show me even print

//4
I wrote dispose method of my player page, but that too didn't show me print

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

No branches or pull requests

1 participant