Lars
Lars
A few hours has passed, and my sound is now also dead in the tiny test project. I ran the project as a release on my Pixel 5 (physical device)....
Not sure either, and I have zero experience with FFI tbh. Normally I'd recommend looking at Android lifecycle events, but I'm not even sure those are relevant in this context?
Yeah might not be doze mode. I'm surprised your Flutter Widget dies entirely. Maybe try wrapping the dispose soloud call in try/catch, in case something crashes the widget there?
Need to reconsider this, now that macros have been scrapped.
> Hi @benPesso, I can now reproduce the issue. It didn't reproduce for me when I used the button in vscode. Curious, does this only happen with go_router in the...
**EDIT** Turns out I was stuck on an old version of firebase-tools, due to having multiple Node installations (NVM). After fixing the problem, my error went away. **ORIGINAL POST** Getting...
Attached is an example of "out of memory" errors in v1 and v2 respectively:  It's pretty painful to debug v2 functions, of any kind. I'm considering downgrading to v1...
Can we expect this to be looked at before 2026? It's a pretty crucial piece of functionality.
The workaround is similar to last time (#154): But instead adding (to your project build.gradle): ```groovy subprojects { afterEvaluate { if (project.plugins.hasPlugin("com.android.application") || project.plugins.hasPlugin("com.android.library")) { if (project.name == "flutter_nfc_kit") {...
Do you have any workarounds forcefully specifying the kotlin toolchain? Example: ```groovy kotlin { jvmToolchain(21) } ``` If so, try removing that, as gradle _should_ be able to detect the...