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.
Did you add
c2dm.jarto your project’s build path?First copy the
c2dm.jartolibfolder in your project (create one if there are none).1.) Right click on your project and select
Properties.2.) Select
Java Build Pathand selectLibrariestab.3.) Click
Add External JARs...button and choose thec2dm.jarfromlibfolder.4.) Click
OpenandOK.