ryanheise
ryanheise
I can't run that unless you provide the link to your minimal reproduction project repository. Also, if you can't play "any" audio file, it wouldn't be necessary to construct a...
Does this issue happen only with assets, or with other audio sources? Have you tried waiting for the asset to load before calling play?
In just_audio, "load" just means the same as what the `load()` method does, which is what `setAsset` uses under the hood. And this doesn't necessarily buffer the whole file. The...
Hmm. Flutter has its own way of doing multidex, and it should happen automatically if in your `AndroidManifest.xml` you have your `` attribute of `android:name` set to `${applicationName}` (from memory)....
I'd still be interested to get to the bottom of this, though. Here's a StackOverflow question about it: https://stackoverflow.com/questions/71443293/app-requires-multidex-support-in-flutter
Another one: https://stackoverflow.com/questions/70957389/what-does-the-applicationname-in-flutter-androidmanifest-xml-means > This value is set by the Flutter Gradle plugin. > > It can have 2 value : > > If you have multidex enabled and your...
If you're getting "Could not find an option named multidex", then it looks like a version issue. After some more investigation, I found an open issue on flutter: https://github.com/flutter/flutter/issues/98136 It...
@ABDERRAHMANE-OUALI do you have a reference for that? I've found Flutter's own support for multidex should work in both cases (above or below API level 21) provided that `android:name` is...
Is anyone still seeing this behaviour with the latest stable release of flutter? I have been tracking the fuses issue linked above and they say that it has potentially been...
It'd be interesting to do some profiling to see whether the main thread is being blocked when the FlutterEngine is being shut down. Although if that is where it's happening,...