INNER CODE UNIT · Java

handleSplashScreen

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

  private void handleSplashScreen(ReactivateActivity activity) {
    if (VERSION.SDK_INT < VERSION_CODES.S) {
      int splashLayoutResId = getSplashScreenLayoutResId();
      if (splashLayoutResId != 0) {
        activity.setContentView(splashLayoutResId);
      }
    }
  }

  private void startUnhibernateActivityForResult() {
    Log.i(TAG, "Unarchiving package: " + getPackageName());
    Intent intent = new Intent();
    intent.setAction("com.google.android.STORE_ARCHIVE");
    intent.setPackage(appStorePackageName);

    // Forward any attached data to the app store for consideration.
    if (getIntent() != null && getIntent().getData() != null) {
      intent.putExtra(EXTRA_DATA, getIntent().getData());

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…