Is there any way to find out where iOS app is downloaded, however never launched?
I am trying following things for that - 1. Send a notification, and on Didreceivenotification handler try to figure out how many didnt click on the notification / iOS App? How can we send data to the back end when app is just in downloaded state and not even lunched even once. What is the stage of the app when its just downloaded (Inactive / suspended?)
Currently, I am using NSURLConnection to send data to back end in the Didreceivenotification, however NSURLConnection request gets lost.
Any thoughts?