我在Android Sample Watch面部编码。我想连接到Google Play服务以获取我当前的位置,并将其放入我的OnCreate方法中:
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API)
.build();
像这样:
我的错误如下:
第一个不能应用于引擎。 mGoogleApiClient,LocationServices无法解析为符号。我已经尝试实现/扩展我的Engine类,这是不允许的。问题可能是我把这段代码放入的类,因为它可能有不同的组织方式?我怎样才能做到这一点?感谢。
答案 0 :(得分:1)
你有最新的google api更新吗?您是使用Android studio还是Eclipse进行开发?您确定导入是否正确且Google Play服务是否位于项目的同一工作区中?我遇到了类似的问题,并在eclipse中使用ADT进行更新修复它。