Top "Foreground-service" questions

What is the proper way to stop a service running as foreground

I am trying to stop a service which is running as foreground service. The current issue is that when I …

android foreground-service
Oreo - Foreground service does not show foreground notification

So far, I've adjsuted my code to use ContextCompat.startForegroundService(context, intentService); to start my service. This way, it works …

android android-notifications android-8.0-oreo foreground-service
Android 9 (Pie), Context.startForegroundService() did not then call Service.startForeground(): ServiceRecord

First of all, I looked at these; Context.startForegroundService() did not then call Service.startForeground() Context.startForegroundService() did not then …

android android-service foreground-service
How To Start An Activity From Background in Android 10?

I am building an android app where I need to start an activity from background. I am using a ForegroundStarter …

android foreground-service
How to create a never ending background service in Xamarin.Forms?

I am monitoring the user's location every 15 minutes and I just want the application to continue sending the location even …

xamarin xamarin.forms background-service foreground-service
StartForeground for IntentService

I have an IntentService and I want to make it sticky with an ongoing notification. The problem is that the …

android intentservice foreground-service
Media projections require a foreground service of type ServiceInfo.FOREGROUND_SERVICE TYPE_MEDIA_PROJECTION in Android Pie and Q

any body knows why this error occur, Media projections require a foreground service of type ServiceInfo.FOREGROUND_SERVICE_TYPE_MEDIA_…

java android android-9.0-pie foreground-service android-mediaprojection
How to properly stop a foreground service?

I use startForeground to make my service "persist" in background and not be killed by the OS. I remove the …

android service foreground-service