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 use the google example (gcm-demo-appengine - Google Demo)

but i think there may be some problems with google source code, when i run it, it throws


java.lang.NoClassDefFoundError: com/google/android/gcm/server/Sender
at cloud.spam.filter.server.SendMessageServlet.newSender(SendMessageServlet.java:63)
at cloud.spam.filter.server.SendMessageServlet.init(SendMessageServlet.java:54)

There is some problems with the sender class (seriously?)
Can we replace sender class with something else? This is the first time I use GCM thus I have no idea how important sender class is and what it is used for.
Thank you very much.

share|improve this question

2 Answers

Make sure your gcm-server.jar is in the war/WEB-INF/lib folder of your project. Nothing else will do

share|improve this answer

Check this tutorial by Sagar Verma with complete source code.

http://fundroiding.wordpress.com/2012/06/29/google-cloud-messaging-for-android-gcm-simple-tutorial/

share|improve this answer
This tutorial does not cover the server-side application at all, which is where the problem with the Sender class is occurring. – scottishwildcat Sep 5 '12 at 0:01

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.