I am going to do push notification for my app. Is it possible to check this push notification for the application which is not in android market. give me suggestions on how to do test.
You don't need publish the application on the Android market to use C2DM - here is official tutorial
Related
I have created an android application for which i want to send push notification to the app users using GCM. Have read that GCM doesn't use Mobile numbers to send notification to app users. My question is that how can i use GCM to send notification to specific users,and also can some one help with procedure of setting up GCM for android Apps?
Thanks in advance !
First of all you should read the documentation as Aditay Said.
GCM communicates with your app using your pacakge signature and app id which you provided in googole developer console.
Here is a helpful link for you , This will help you to achieve your goal
https://neurobin.org/docs/android/push-notification-gcm-client-server/
N.B: Don't forget to accept my answer if you got your answer
I have an android app already made and it supports push notification. I used Google cloud messaging for push notification. How to make the same push notification work on ios.
Do I have to make another one using apple push notification services?
Android and iOS are coded very differently, you can't just copy the app code in your android app and put it directly into an iOS app. You will have to learn how iOS push notifications work. I suggest this tutorial:
http://code.tutsplus.com/tutorials/setting-up-push-notifications-on-ios--cms-21925
In order to use Push Notification in IOS device you need to integrate Apple's APNS service.
Follow this link:
Apple's APNS
I'm trying to create application for Android and iOS and, i want to use push notification on both the application. I'm going to have a server app that will be sending the notification.
but i am trying to APNS and Parse SDK it's common to use ,but i want GCM through push notifications on iOS ,can you please how can it possible ,any such information about GCM to iOS push notifications ,i am googling but i want some suggestions for GCM through iOS device notifications.Can you help me.thank you.
There is very good descriptive instructions in Google Cloud Messaging for iOS guide. It shows whole flow from registration of device token to receive push from server with code example.
After go through above guide, you may go for Setting up a GCM Client App on iOS and you are almost done to use GCM with iOS application
Update: GCM now supports IOS. See Grigo´s comment.
GCM is Android specific. If you want to avoid dealing with 2 different services for IOS and Android, you can use something like Amazon SNS for example. SNS now supports pushing cloud notifications to Android, IOS and Windows devices via the AWS Mobile SDK.
i am an Android developer and and Want to port my Android app in Blackberry 10.
in my android app i have a promotion feature in which i use push notification to show current promotion. and when user click on it, it opens browser to show promotion.
ok this is the working of my app.
now i want to ask how to port this app in Blackberry with that push notification feature.
is it possible.
any tutorial or example for this.
i have already read how to convert/port Android App in Blackberry on Blackberry's Developers site.
but is it possible with push notification feature?
Regards
As it turns out, you can. Check Creating Push-Enabled Android Apps. You can't use Android C2DM, but you can do the same using BB10 push service.
I have to build an application for push notifications in android.I read from the net tutorials that for push notifications C2DM is required.And for c2dm android market application needs to be installed.Can i plz have guidelines as how to install android market app in my emulator?
for implementation of push notification you don't really need the market app,
take a look at this answer
Android C2DM Push Notification
and the tutorial
http://blog.mediarain.com/2011/03/simple-google-android-c2dm-tutorial-push-notifications-for-android/