Push notification in adobe air (android and ios) with urbanairship/parse - air

I am looking for a solution or a guideline for one that will enable me to register to one of the big services that enable push notification.
I know that it will be easier in IOS http://www.adobe.com/devnet/air/articles/ios-push-notifications.html
I have problem with it android even though I successfully send a push notification to android. but without registration like explained Heading here.
http://afterisk.wordpress.com/2012/09/22/the-only-free-and-fully-functional-android-gcm-native-extension-for-adobe-air/
Could someone direct me to a solution
Thanks

Related

React-native : cannot receive message through FCM in IOS device

I have an issue with push notification in iOS devices using Firebase Cloud Messaging although it worked before. When I check apple dev account,I realized that some information has expired (like keys, profiles), I updated all of its and GoogleService-Info.plist but it still not work. Has anyone face with this issue? Please give me a solution. Thanks
link issue
Follow all the setup related to
Firebase App Integration from here
Firebase Cloud Messaging from here
For iOS, you need to set up Capabilities(Push Notifications & Background Modes)
You have setup all the things related iOS from here
Let me know still you have any queries. I hope it will help you!

How to display an image in a expo local notification

To give more clarity on the issue, i am developing this for IOS using expo notifications and expo sdk44 in my current project.
I have a couple of questions which i failed to find the answer to in their official documentation.
Is it possible to display images in a local notification while using expo's expo-notification library?
Is it possible to send "data-only" messages to Apple devices using expo push notification service?
Thanks in advance
expo-notifications has limited features and not currently support a custom image in the notification.
In case you need a native-like notification experience, you should opt for https://notifee.app/.

Push Notification Button not showing up in Microsoft App Center

I'd like to try the push notification feature of Microsoft App Center.
I'm logged in the app center portal. I created an app. When I click on the app, I see a bunch of buttons in the left pane (Diagnostics, Analysis, Settings) but there is no Push button like I normally see in tutorials, and videos.
Anyone know what I'm missing ? Is it a subscription issue ?
thanks
I just had the same issue and got confused, since we have other apps that still
have the 'Push' button on the left side. Upon further inspection i found this notice on our existing apps. The notice links to this url
Apparently they are shutting down push notification support on Appcenter and urges you to use Azure Notification Hubs instead.
This kinda sucks, since we build multiple apps already with Appcenter push support, and they have not supplied us with a migration guide (yet)

React Native Remote Notifications

So what are your experiences with sending remote notifications to RN app from FCM?
I did some research today, tried bunch of tutorials, but most of them didn't work.
So I wanna hear your opinion, which library are you using for this and what guide did you follow?
react-native-push-notification
react-native-fcm
react-native-firebase
react-native-onesignal
I did the connection a few days ago. It is not difficult but it requires a lot of configuration as notification is a native feature. I recommend you the following library that can help you:
React Native FCM
Also take in count the following things:
For ios you need get some certificates from apple.
This guide help with the setup and android part.
Remote notification can't reach iOS emulator since it can't fetch APNS token. Use real device.
I used to react-native-fcm, but now I use react-native-firebase, it is simple to use, just follow the documentation https://rnfirebase.io/docs/v5.x.x/getting-started
just follow the installation tab guide, cloud messaging tab guide, and notification tab, also you can find js code there. for IOS part, you need some extra work to add some certificate to your developer id and add some certificate to your firebase app.

Quick fix to solve XMPP iOS VoIP background execution rejection by appestore

I developed an xmpp ios chat application. The application requires the functionality of receiving the chat messages even if the application in background state. In order to achieve this, i used VoIP background execution to stay the user session alive instead of implementing apple push notification . The application is working fine. But the problem is that, the application is rejected by the appstore(Meta data rejection). Is there any quick way to solve this issue ??? Thanks in advance.
By giving background mode capabilities would not allow to make your app live if there is no functionality of VOIP in the app.
Use Pushkit ( Silent push notification ) like whatsapp, facebook etc chat app to keep your chat functionality in background or kill state.
Let me know if i could help you in push kit or anything else.