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'm following the tutorial on GCM here http://developer.android.com/guide/google/gcm/gs.html

At point 5 of Step 2, it says:

Add the following intent service: service android:name=".GCMIntentService"

This intent service will be called by the GCMBroadcastReceiver (which is is provided by GCM library), as shown in the next step. It must be a subclass of com.google.android.gcm.GCMBaseIntentService, must contain a public constructor, and should be named my_app_package.GCMIntentService (unless you use a subclass of GCMBroadcastReceiver that overrides the method used to name the service).

However, I can't subclass com.google.android.gcm.GCMBaseIntentService, the import can't be resolved. How do I fix this?

share|improve this question
2  
do you have gcm.jar in your build path? – Yashwanth Kumar Jul 13 '12 at 14:33
thanks, this is the answer, I put those jar files in my class folder but didn't add to build path. – Tung Mai Le Jul 14 '12 at 1:40

1 Answer

You have to install the libraries: http://developer.android.com/guide/google/gcm/gs.html#libs

From the SDK Manager, install Extras > Google Cloud Messaging for Android Library. This creates a gcm directory under YOUR_SDK_ROOT/extras/google/ containing these subdirectories: gcm-client, gcm-server, samples/gcm-demo-client, samples/gcm-demo-server, and samples/gcm-demo-appengine.

share|improve this answer

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.