Below is my block of code which should open NotificationActivity when the notification is tapped on. But its not working.
NotificationActivity
private void setNo
Try checking your AndroidManifest.xml, double check if you are navigating to an activity with an intent-filter main action, launcher category
AndroidManifest.xml
intent-filter main action, launcher category
For example,
I couldn't make my pending intent to navigate to HomeActivity but it works when navigating to SplashScreen
pending intent
HomeActivity
SplashScreen
Hope this helps.