Reputation: 12333
My app wors from iOS5 - iOS8.
I want to implement silent push notification. Now I know silent push notification available starting from iOS7 and above. as per below code :
{
"aps" : {
"content-available" : 1,
"sound" : ""
}
}
if I receive silent push notification in iOS6 and below, will my app receive push notification or it doesn't do anything ?
Upvotes: 2
Views: 136
Reputation: 2168
The answer is NO. The notification will not received by the device. As mentioned in Apple documentation here -
The Callback method is available only from iOS7
Upvotes: 5