I am just started exploring app engine with android (Java) and I followed a link to teach me how to create an App Engine Connected Android Project. https://developers.google.com/eclipse/docs/endpoints-androidconnected-gae
I followed exactly what was written in the link ,
1) Created a new app engine connected android project
2) Get the project number and API Keys from https://code.google.com/apis/console/#project
3) enable Google Cloud Messaging in the Google APIs Console
4) set the LOCAL_ANDROID_RUN to true in CloudEndpoints class
5) used a emulator with google api(v17)
6) installed the android cloud messaging library from android sdk manager
7) I am using eclipse indigo
i got errors these lines in RegisterActivity.java
import messageEndpoint.MessageEndpoint;
import messageEndpoint.CollectionResponseMessageData;
import messageEndpoint.MessageData;
i got i got errors these lines in GCMIntentService.java
import com.tez.deviceinfoendpoint.Deviceinfoendpoint;
import com.tez.deviceinfoendpoint.Deviceinfoendpoint.Builder;
import com.tez.deviceinfoendpoint.model.DeviceInfo;
and errors like that:
Deviceinfoendpoint cannot be resolved to a type GCMIntentService.java
MessageEndpoint cannot be resolved to a type RegisterActivity.java
What should i do?