AndroidStreamingAudio
                                
                                 AndroidStreamingAudio copied to clipboard
                                
                                    AndroidStreamingAudio copied to clipboard
                            
                            
                            
                        Help
how can i solve this?, i use android 7
    private void SendAudioCommand(string action)
    {
       var intent = new Intent(action);
        StartService(intent);
    }
Service Intent must be explicit: Intent { act=com.xamarin.action.PLAY launchParam=MultiScreenLaunchParams { mDisplayId=0 mBaseDisplayId=0 mFlags=0 } }
You can't use a string
Here is what I did :
var intent = new Intent(Android.App.Application.Context, typeof(StreamingBackgroundService)); intent.SetAction(action); StartService(intent);