O Android GooglePlayServicesUtil.getErrorDialog () não mostra a caixa de diálogo


Estou tentando verificar a disponibilidade deGoogle Play Services APK antes de usá-lo. Eu tenho um dispositivo onde o pacote está desatualizado (o log lê "... Google Play Services desatualizados. Requer 3225100 mas encontrou 3136134").
O código abaixo deve lidar com essa situação e mostrar uma caixa de diálogo solicitando que o usuário faça a atualização. Por um motivo desconhecido para mim a linha

GooglePlayServicesUtil.getErrorDialog(resultCode, this,
                    PLAY_SERVICES_RESOLUTION_REQUEST).show();

retorna imediatamente mostrando nenhum diálogo (e não bloqueando o thread da interface do usuário em um evento da interface do usuário).
Você poderia, por favor, lançar uma luz sobre o que é possível e como corrigir o código para que o diálogo seja exibido?

@Override
protected void onResume() {
    super.onResume();

    // Check device for Play Services APK. If check succeeds, proceed with
    //  GCM registration.
    if (checkPlayServices()) {
        gcm = GoogleCloudMessaging.getInstance(this);
        regid = getRegistrationId(context);

        if (regid == null || regid.length() == 0) {
            registerInBackground();
        } else {
            this.user.setGCMRegistrationId(regid);
        }
    } else {
        Log.i(TAG, "No valid Google Play Services APK found.");
    }       
}

/**
 * Check the device to make sure it has the Google Play Services APK. If
 * it doesn't, display a dialog that allows users to download the APK from
 * the Google Play Store or enable it in the device's system settings.
 */
private boolean checkPlayServices() {
    int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
    if (resultCode != ConnectionResult.SUCCESS) {
        if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
            GooglePlayServicesUtil.getErrorDialog(resultCode, this,
                    PLAY_SERVICES_RESOLUTION_REQUEST).show();
        } else {
            Log.i(TAG, "This device is not supported.");
            finish();
        }
        return false;
    }
    return true;
}    


@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  switch (requestCode) {
    case PLAY_SERVICES_RESOLUTION_REQUEST:
      if (resultCode == RESULT_CANCELED) {
        Toast.makeText(this, "Google Play Services must be installed.",
            Toast.LENGTH_SHORT).show();
        finish();
      }
      return;
  }
  super.onActivityResult(requestCode, resultCode, data);
}    

questionAnswers(1)

yourAnswerToTheQuestion