when i click notication , its just open app.
how i will redirect to particular state or url or location or path when i click.
plz help.
Often you can add some extra JSON when you send the message that your App can intercept and then state.go() to another state.
For example with Pushwoosh you can add JSON as:
"data":{ // JSON string or JSON object, will be passed as "u" parameter in the payload
"custom": "json data"
},
(from http://docs.pushwoosh.com/docs/createmessage)
It will be different for other push notification providers but likely they have similar functionality.
i am not using any third push ,how will i do
When sending via GCM have a look at https://developers.google.com/cloud-messaging/server-ref in the Payload section. You should be able to pass in items there.