I am trying to make app which uses services.But i need services to run continously.I dont want it to be stop if i use 3rd party app such as 360 security ,task killer.I have created my services like this way.Thanks in advance.
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
return START_STICKY;
}
I have used START_STICKY,but this doesnot help.