我刚刚开始使用 android (Java) 探索应用引擎,然后我按照链接教我如何创建 App Engine Connected Android 项目。https://developers.google.com/eclipse/docs/endpoints-androidconnected-gae
我完全按照链接中写的内容进行操作,
1)创建了一个新的应用引擎连接的android项目
2) 从https://code.google.com/apis/console/#project获取项目编号和 API Keys
3) 在 Google APIs Console 中启用 Google Cloud Messaging
4) 在 CloudEndpoints 类中将 LOCAL_ANDROID_RUN 设置为 true
5) 使用带有 google api(v17) 的模拟器
6) 从 android sdk manager 安装 android 云消息库
7)我正在使用日食靛蓝
我在 RegisterActivity.java 中遇到了这些错误
import messageEndpoint.MessageEndpoint;
import messageEndpoint.CollectionResponseMessageData;
import messageEndpoint.MessageData;
我在 GCMIntentService.java 中得到了这些行的错误
import com.tez.deviceinfoendpoint.Deviceinfoendpoint;
import com.tez.deviceinfoendpoint.Deviceinfoendpoint.Builder;
import com.tez.deviceinfoendpoint.model.DeviceInfo;
和这样的错误:
Deviceinfoendpoint 无法解析为 GCMIntentService.java 类型
MessageEndpoint 无法解析为 RegisterActivity.java 类型
我应该怎么办?