Top "Android-service" questions

A Service is an application component representing either an application's desire to perform a longer-running operation while not interacting with the user or to supply functionality for other applications to use.

Creating an Android Service with Phonegap? (Have phonegap app run even when closed)

I have been working on an Android app using Phonegap and now would like to make it so when the …

android cordova mobile android-intent android-service
How to keep a service running in background even after user quits the app?

I am developing an app where I start a service if a particular feature (in my app) is enabled by …

android android-service
Unable to start service Intent: not found

I've the same issue described here but i can't understand whats wrong. My issue is: Unable to start service Intent { …

android android-intent android-service
How can we prevent a Service from being killed by OS?

I am using Service in my application and it needs to run until my application is uninstalled, but the problem …

android android-service
Android RuntimeException: Unable to instantiate the service

I want to create a service which will run on a separate thread (not on UI Thread), so I implemented …

android android-service android-intentservice
Start a Service from activity

In my app i have an activity from which i want to start an Service Can any body help me?

android android-service
Exported service does not require permission: what does it mean?

I created a service that is bound by other applications through AIDL, and I add it to the manifest as …

android android-service
Continue Service even if application is cleared from Recent app

I am having a little issue. In my application, a Service is started after user is logged in successfully. Previously, …

android android-service
Background Service getting killed in android

We have developed an Android Application which involves a service in the background. To implement this background service we have …

android android-service
Android java.lang.IllegalArgumentException: Service not registered

I have a setup that looks something like this: class MyFragment implements SomeEventListener { Application mAppContext; boolean mBound; boolean mDidCallUnbind; MyIBinder …

android android-service android-service-binding