当我尝试创建Google API客户端时,第二行出现错误
.addApi(LocationServices.API)
GoogleApiClient mLocationClient = new GoogleApiClient.Builder(this)
.addApi(LocationServices.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
我该如何解决这个问题?