このチュートリアルに従って、このコードをメイン アクティビティに貼り付けました。
@Override
public void onConnectionFailed(ConnectionResult connectionResult) {
if (connectionResult.hasResolution()) {
try {
connectionResult.startResolutionForResult(this, RESOLVE_CONNECTION_REQUEST_CODE);
} catch (IntentSender.SendIntentException e) {
// Unable to resolve, message user appropriately
}
} else {
GooglePlayServicesUtil.getErrorDialog(connectionResult.getErrorCode(), this, 0).show();
}
}
Buncha ライブラリをインポートする必要がありますが、まだこのエラーを修正できません。
RESOLVE_CONNECTION_REQUEST_CODE cannot be resolved to a variable
何か案は???どのライブラリにこの定数が含まれているかわかりません...