INNER CODE UNIT · Java

onResume

google/bundletool · src/main/dex_src/com/google/android/archive/ReactivateActivity.java:60

  public void onResume() {
    super.onResume();
    // Ensures we don't try to send another intent immediately after the first one failed, instead
    // an error dialog is shown.
    if (processingError) {
      return;
    }
    startUnhibernateActivityForResult();
  }

  /** Returns true if the targeted Store is installed and enabled. */
  private boolean isStoreInstalled() {
    try {
      return getPackageManager().getApplicationInfo(appStorePackageName, 0).enabled;
    } catch (NameNotFoundException e) {
      return false;
    }
  }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…