I am using this code to show the local notification and When notification comes then on click of notification want to launch the ListActivity but on Google nexus device
My above code is working well for all OS version except Kitkat 4.4 and 4.4 + But i have got solution i, put the receiver in another process and it works well for all most Android OS versions...
Like this way..
activity android:name=".NotifyReciever" android:process=":remote"
and we can learn more about processes here....
Should I use android: process =":remote" in my receiver?