Nick Fisher
Nick Fisher
@mal33k-eden Any update? Will close unless response received.
@gb1849 does this happen on the example project?
This would be a welcome feature - if anyone wants to contribute, please submit a PR.
I'll look into this - have you tried the PR @ https://github.com/rmawatson/flutter_isolate/pull/32? Adding a custom plugin registrant may fix, I'm not sure.
@juliansteenbakker I have merged some fixes into master that allow for a custom plugin registrant, can you try this and see if it fixes?
@juliansteenbakker after looking into this further, the problem is that on Android, the flutter_blue plugin requires an Activity to function (and flutter_isolate works by spawning a new FlutterEngine which isn't...
@campcoxconsultants I vaguely recall `flutter_blue` running a permissions check against the activity every time a scan was performed (which would throw an exception, because the activity was null). It's been...
I have also wondered whether a FlutterEngine is actually needed - in theory it should be possible to spawn a plain Dart isolate and just hook up the corresponding plugin...
As long as you keep a reference to the spawned isolate, you can just invoke `kill` (the README/example project contains example code). I'm not really sure why you would need...
@indrajit-roy I thought the whole Flutter lifecycle was intrinsically linked to the main activity, so when that's destroyed all the executors are destroyed too. Can you point me to some...