I am trying to add an Notification action item in my app which is a music player. When a stream is started a notification should be triggered and an stop button for the stre
I had a very similar issue but a very different solution. Pending intent is also not fired if you have declared
in your manifest.xml file.
Replace from android:enabled="false"
to android:enabled="true"
This might not be a direct issue of the problem. But if you create the service in android studio using default template it automatically adds these properties to the service.