Retrieving the component name of a service defined in another Xamarin application
问题 I'm currently implementing an Android Service which is to be consumed by another application of a partner company. They implement the frontend GUI, we do the business logic inside the Service. The Service is declared like this: [Service] [IntentFilter(new[] { "PsiServiceHost" })] public class PsiServiceHost : Service { ... } The consuming application (optionally) starts the service and connects to it using this Intent: serviceIntent = new Intent("PsiServiceHost"); Starting the service using .