Exnonull
Exnonull
Agree. I did ``` flutter create . flutter pub add share_plus flutter build apk --release ``` Then got following errors ``` FAILURE: Build failed with an exception. * What went...
> Then got following errors this error gone but i still have ton of "incompatible version of Kotlin" with most of plugins because of lately android 14 release but now...
there mention that after 9.11.2+ this issue fixed https://github.com/Canardoux/flutter_sound/issues/1071#issuecomment-2322823590 in my case it had conflict with flutter_facebook_auth so i couldn't update to latest but i solved conflict by using https://github.com/darwin-morocho/flutter-facebook-auth/issues/410#issuecomment-2458431336...
🤔 don't know if thats what you was seeking for but i used `this.source.count = function() {return count};` to make it display pages some snipped from my code that i...
in my case i accidentally placed `startService` before `configure` and asking user for permissions between these 2 calls
in my case this worked, had conflict with flutter_sound ``` dependency_overrides: js: any ```
Hmm... In my case i ended up with using FlutterMethodChannel to manually activate/deactivate audio session when inviting/accepting calls on iOS side in foreground mode And background/terminated/locked screen modes audio are...
> Hmm... In my case i ended up with using FlutterMethodChannel to manually activate/deactivate audio session when inviting/accepting calls on iOS side in foreground mode > ... Forgot to mention...