How to allow hacktivated iOS devices to receive Push Notifications? - ios

I'm developing a game that runs on iOS using Unity3D, my problem is that I can't find a solution to let push notification work on jail broken and hacktivated devices. How can I do that?
Thanks
PS: I use App42 to send the push notification.

Related

iOS 11 - Offload app feature - Push Notifications

How to does push notifications work in case of "Offload app" feature in iPad?
I am facing an issue in iOS 11 on iPad, my application still receives push notifications in "Offload app" status. Is there any delegate or a notification the app can handle in this state.
So far i couldn't find any documentation for the same.
Suggestions are much appreciated. Thanks in advance.

How can send push notifications to web application on iOS devices?

I struggle to find a solution how can I send web push notification to iOS devices? For Android there is no problem I use service worker and GCM.
But I found service worker for iOS push notifications is under construction.Is there a way for iOS devices?
If by web application you consider an app that opens in Safari the answer is: you can't send web notifications to iOS. Documentation:
Notifications for websites do not appear on iOS
If your web application is a native app with web view in it for content loading then you'll have to use native push notifications.
Is there a way for iOS devices?
It's not possible at the moment and there isn't any workaround for websites.
You need to create a native or hybrid app for iOS if you want push notifications.
Let’s ask Apple to add Web Push Notifications to iOS

Appcelerator - ios push notification bug

I'm working with push notifications using Appcelerator.
Is it possible that this important bug
https://jira.appcelerator.org/browse/TIMOB-18282
is still open?
The bug occurs when an ios app receive a push notification. If the app is closed, nothing is fired.
On iOS, there is no way to handle a push notification is it arrives when the app is closed.
I'm so disappointed. Push notifications are important in modern apps! And in Appcelerator don't work!
First of all that bug is still open because it can never be solved and in fact it is a limitation from Apple itself or even it is the limitation of every mobile OS.
Apple Push Notification Limitation
Read the above link for more details and you will have your all doubts cleared about Push notifications. Currently Titanium support best Push Notification handling when compared to cross-platform frameworks.
After reading above post, if you have any other doubts, then we are happy to help!

Pushkit voip push notifications are not being received on iOS8.0.2

I implemented new pushkit voip push notifications and until now it has been working properly in all iOS8 devices I tested except one.
I ve got an iPhone iOS 8.0.2 which is not receiving any voip push.
It registers correctly as I get the pushRegistry:didUpdatePushCredentials: forType: delegate called
I tested previous remote pushes (registerForRemoteNotifications) with success but none of sent voip push are received.
So my questions are:
*Anyone has experienced same behavior for pushkit voip push notifications?
*Could it be something related with iOS version (iOS 8.0.2)?
*Could anyone having this version (iOS 8.0.2), implementpushkit voip push and try to receive a voip push notification in order to discard version problem?
If you need to implement pushkit voip push notifications you can check my answer on stackoverflow question
It only works on iOS8. With this SDK only works on iOS 8.1 (as of writing this it's beta 1). The reason for this is that in 8.0 the compiler linked is a dynlib and is not able to locate push kit framework for 32bits when running on 64bit hardware. But for now you need to compile for armv7 and armv7s.
You have to configure the Voip Push on the server-side, its not just about implementing it to the code.

Is it possible to SEND a parse push notification from a the simulator?

I know it's not possible to receive push notifications on the simulator but is it possible to send them? Noticed that the simulator won't create an installation on Parse.com but does this make a difference?
thanks
Short answer: you CAN
BUT
You cannot fully test push notifications in Xcode's simulator. You can send pushes from the simulator, but it will not receive push notifications.
Apple does not support Push Notifications through the iOS Simulator.
First you can't register to APNS with simulator So you can receive or send push notification from simulator , you need real device

Resources