ryanheise

Results 1670 comments of ryanheise

@zoechi Thanks very much for the explanation. I'm guessing that platform channels also fall into this category, so I would need to call `channel.setMethodCallHandler(null)` within the isolate before the isolate...

@zoechi Hmm, then how does the background isolate normally stay alive long enough to receive messages on the method channel? For example, here's the isolate entrypoint for the Geofencing plugin...

You can try audioplayer which doesn't have this error: https://pub.dev/packages/audioplayer You can use audioplayer in combination with audio_service to play audio in the background: https://pub.dev/packages/audio_service Background audio is Android-only so...

Hi @Sun3 If you were to write this in native Android, you would use MediaPlayer to play audio, and you would use MediaBrowserService to support background play with controls on...

> The audio_service plugin doesn't support loading local audio files located in the Flutter app project structure. I actually do exactly what you describe in my own app using those...

@Sun3 Putting aside the suggestions directed at Google, I'll just comment on the idea of building a monolithic plugin that does everything conceivable. The key point you have to understand...

> I wasn't suggesting to build a monolithic plugin that does everything conceivable [...] I am only asking Google to consider [...] Your suggestions to Google are separate, so just...

Hi @remoteportal Not yet. A number of community members have contributed pointers to the iOS code that will need to be integrated, but unfortunately (and understandably) the issue is that...

@consuelogranata , audio_service provides the necessary callbacks to detect when you receive a call so that you can pause, and when audio focus returns to your app so that you...

@remoteportal I was recently able to get my hands on a Mac, watched a Lynda.com tutorial on Objective C, and was able to hack together a partial iOS implementation. We...