Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to do push notification in android using GCM. I read the Google docs for GCM and there demo application. I created the client side program mention here http://android.amolgupta.in/ but i am not getting registration ID. Also am not getting some points 1. do i need to server program too with this 2. on Google demo app they mention that i need to change api key at "samples/gcm-demo-server/WebContent/WEB-INF/classes/api.key" is it necessary to do it every time as i am creating new project

Can any one provide me proper project other than google provided so that i clear my concepts.

Any help will be appreciated.

Thanks in advance

share|improve this question

2 Answers

I would insist you to go through the steps in my blog to run the Demo provided by google to get better idea how you can implement it yourself.

Google has provided Server Side as well as Client Side source in the GCM Library when you download it from SDK Manager.

share|improve this answer
is there is only way to perform this??? And what is the format of registration ID i mean how long it is. I am getting 3 lines long registration ID is that correct one? – Neha Jul 17 '12 at 6:57
Yes, that is the correct resgistration ID – Lalit Poptani Jul 17 '12 at 7:02
Ok. But i am getting that registarion ID only in LogCat i am trying to show it on textview but textview appears blank. I upload my code please check it. – Neha Jul 17 '12 at 7:19
Now i am getting both null. Y so??? – Neha Jul 17 '12 at 7:25
And also when i am running on it device or emulator both get hang. Every time i re-boot it why this is happening like this?? – Neha Jul 17 '12 at 7:30

In response to your first question: Yes, you have to run a server app to send the messages, as well as a client app to receive them.

In response to your second question: Yes, every application needs its own API key. This key is for your server app, not the client.

share|improve this answer
Ok now i bit confused that how should i create my application on push notification i mean what i need to do on clent side and server side ? – Neha Jul 17 '12 at 7:28
Your server needs an API key so that the GCM infrastructure will accept messages from it. Your client needs a RegistrationID from the GCM client library so that your server app knows who to send the message to. You need to send this RegistrationID to the server. The tutorials should walk you through this. – Sparky Jul 17 '12 at 7:31
which tutorial the google one? – Neha Jul 17 '12 at 7:34
Not specifically, but sure. Whatever works. You might want to start with the source code for a complete sample app and refer to it as you walk through the tutorial. – Sparky Jul 17 '12 at 7:38
Ok @Sparky. I tried client code and upload it above. will you please check that one actually it is not showing me any registrationID. where i went wrong exactly? – Neha Jul 17 '12 at 7:43
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.