don't make our service sticky

This commit is contained in:
Vincent Breitmoser 2014-08-31 19:30:28 +02:00
parent e46bc24079
commit d17b478a9e

View File

@ -904,7 +904,7 @@ public class KeychainIntentService extends IntentService
public int onStartCommand(Intent intent, int flags, int startId) {
if (ACTION_CANCEL.equals(intent.getAction())) {
mActionCanceled.set(true);
return START_STICKY;
return START_NOT_STICKY;
}
return super.onStartCommand(intent, flags, startId);
}