can we do push notification in iphone using phonegap framework? - iphone

I need basic idea about how to implement push notification using phonegap framework.

Yes we can:
The latest version of that beta offered developers a very exciting new feature just this morning - push notification of new messages. That means apps will be able to send SMS style messages when something important occurs
Taken from this website:
http://www.dotnetexpertsforum.com/introduction-to-phonegap-framework-t1686.html
To have complete documentation for PhoneGap, go to http://wiki.phonegap.com
And also, we have several tools with PhoneGap, which are:-
(a) PhoneGap simulator(cross-platform)
(b) XUI :- JavaScript framework for mobile device browsers
(c) Lawnchair:- It is a clent-side JSON store
(d) Easy APNS :- Push notifications using Php & MySQL
(e) Sony WebSDK:- To make mobile applications to work on multiple devices
(f) Urban Airship :-It offers services like: Push notifications, Air Mail, In-App purchase.
So as you can see PhoneGap does offer this solution. Just visit the documentation and it will help you.
If this answer was helpful please mark this post as answered.
If you need any more help do let me know.
Pk

Related

iPhone chat functionality

i want to implement a chat functionality between two iOS devices.Please suggest me some libraries for the same.I went for XMPP but code is not available for that on repository.
Thanks,
You visit tutorial by RayWenderlich. Part1 and Part2. In this tutorial he has explained how to use webservice and PushNotification for chat kind of functionality.
You can also check Scringo. It's SDK offers chat between your app users.
Have you considered using push notifications?
You could use a service like Urban Airship so you don't have to roll your own push server, and they provide a pretty comprehensive iOS Framework which you could use to take advantage of their services.
You would of course still need some way of tracking who was talking with who so there would need to be some work on your part to build the necessary intermediary software/API, although this should be a pretty trivial task since all you'd need to do is keep a record of each of the device tokens in the conversation.
XMPP is still alive.. A newer version also came up...
You can download Version 2 directly here
To download Version 3 you have to download and install Mercurial repository and download it running this hg clone on the Mac Terminal...

How can I target push notifications to both iPhone and Android?

I am developing apps for both Android and iPhone, and am looking for how I can push notifications to both (if you only have an answer for one, that's ok, I'm sure someone has an answer for the other).
For example, if I'm having a special on something and want to notify people so it sort of dings and a message pops up (I have a Groupon app that does that) how can I accomplish this? And do I have to reprogram each time, or can I do it through an RSS or something else?
For Android 2.2+ use C2DM. Apple also has a proprietary push notification service. In both cases you need to register with the company to use the system. Also in both cases you will need a web server able to communicate to Google and Apple.
If you don't want to have to support an entire server framework for communicating with both iOS and Android devices, take a look at UrbanAirship. It's a dirt-cheap service that allows you to push both plain- and rich- text messages to iOS, Android, and BlackBerry.
Gravy: It also has mechanisms for In-App Purchasing, and statistics tracking.
Maybe PushOver can be a solution https://pushover.net/ but there is probably other web services like that !

Receiving push notification on PhoneGap for iOS

Hello everybody
I would like to receive Apple push notifications through my PhoneGap container. Does anybody now if it has already been implemented?
Thanks a lot
Yes, you can.
See Urban Airships documentation for Phonegap iOS plugin
Yes we can
check these links:
can we do push notification in iphone using phonegap fremwork?
How to implement UA push notifications with PhoneGap
This one is pretty good - https://github.com/phonegap-build/PushPlugin
Here is a tutorial using the above - http://devgirl.org/2013/07/17/tutorial-implement-push-notifications-in-your-phonegap-application/
There are many services that can help you for doing this:
-Urban airship
-Puship
-Pushwoosh
-Parse
and some are free! I'm using puship and I'm very satisfied
Just a hint: Pushwoosh has the most diverse selection of platforms in their guides, including PhoneGap plugins for four basic platforms, and the easiest integration so far!
http://www.pushwoosh.com/programming-push-notification/

Appcelerator Push Notifications

I was wondering if it's possible to create a generic push notification solution for mobile devices (or at least Android and iPhone) with Appcelerator. I found some examples on how to implement iPhone Push with Appcelerator but nothing generic.
Any ideas? Or are there maybe other cross-plattform development sdk to solve this?
As far as I know, you can use the push notification service with iOS only.
See the documentation here.
Then, for the iOS, the simpliest way to send/receive notifications, is to subscribe for free for the UrbanAirship service.
You can find a nice tutorial here.
I only know of push notifications working in IOS (for iPhone) too. However, I understand that Cocoafish are soon working on push notification for Android. Backends like this and UA are about as generic as you can get.
Using Appcelerator Cloud Service(ACS) you can implement the Push Notification.
It is the simplest and reliable one. Follow below tutorial for ACS Push Notification implementation on Android and iOS
Android :
http://www.titaniumtutorial.com/2012/06/appcelerator-cloud-push-notification-in.html
iOS :
http://blog.teemusk.com/2012/05/building-server-push-notifications-with-appcelerator-titanium-cloud/comment-page-1
Hope it helps someone

Reminder feature in iPhone Native Application

In my native iPhone Application, I have a requirement to add a reminder to the user's iPhone Device.
Is it possible to implement this feature using current iPhone SDK ?
Or else is there any other way to implement this feature ?
Thanks in advance...
You need to use Push notifications. The steps involved in doing this are too lengthy and involved to list in this answer. Familiarize yourself with Apple's documentation. You will need a Push notification server or pay a service to handle the Push Notification server for you (such as iLime)