In my Service, I open up a notification on normal run, using this code:
Service
private final static NOTIFICATION_ID = 412434; private void startNotific
That's worked for me:
Random randomGenerator = new Random(); int randomInt = randomGenerator.nextInt(100); contentIntent = PendingIntent.getActivity(this, randomInt, intent, PendingIntent.FLAG_UPDATE_CURRENT);