Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The import com.google cannot be resolved?

I am using a tutorial at this page: http://www.vogella.de/articles/AndroidCloudToDeviceMessaging/article.html

It tells me to change the main activity, everything is going well except for this error: "The import com.google cannot be resolved"

The line highlighted is:

import com.google.android.c2dm.C2DMessaging;

What could be the problem? Should it be my project name instead of com.google? Because I have a java file that is Web.SMS.C2DMessaging.

like image 399
Qasim Avatar asked Jul 28 '11 00:07

Qasim


1 Answers

Did you add c2dm.jar to your project's build path?

enter image description here

First copy the c2dm.jar to lib folder in your project (create one if there are none).

1.) Right click on your project and select Properties.
2.) Select Java Build Path and select Libraries tab.
3.) Click Add External JARs... button and choose the c2dm.jar from lib folder.
4.) Click Open and OK.

like image 186
user802421 Avatar answered Sep 28 '22 09:09

user802421