Loading src/org/lineageos/setupwizard/BaseSetupWizardActivity.java +4 −1 Original line number Diff line number Diff line Loading @@ -257,8 +257,11 @@ public abstract class BaseSetupWizardActivity extends AppCompatActivity implemen } setResult(resultCode, data); Intent intent = WizardManagerHelper.getNextIntent(getIntent(), resultCode, data); // Ensure the ActivityResultLauncher is registered before using it if (mNextIntentResultLauncher != null) { mNextIntentResultLauncher.launch(intent); } } /** Adorn the Intent with Setup Wizard-related extras. */ protected Intent decorateIntent(Intent intent) { Loading src/org/lineageos/setupwizard/SubBaseActivity.java +4 −1 Original line number Diff line number Diff line Loading @@ -73,7 +73,10 @@ public abstract class SubBaseActivity extends BaseSetupWizardActivity { subactivityIntent.putExtra(EXTRA_WIZARD_BUNDLE, wizardBundle); } try { // Ensure the ActivityResultLauncher is registered before using it if (mSubactivityResultLauncher != null) { mSubactivityResultLauncher.launch(subactivityIntent); } } catch (ActivityNotFoundException e) { Log.w(TAG, "activity not found; start next screen and finish; intent=" + intent); mIsSubactivityNotFound = true; Loading Loading
src/org/lineageos/setupwizard/BaseSetupWizardActivity.java +4 −1 Original line number Diff line number Diff line Loading @@ -257,8 +257,11 @@ public abstract class BaseSetupWizardActivity extends AppCompatActivity implemen } setResult(resultCode, data); Intent intent = WizardManagerHelper.getNextIntent(getIntent(), resultCode, data); // Ensure the ActivityResultLauncher is registered before using it if (mNextIntentResultLauncher != null) { mNextIntentResultLauncher.launch(intent); } } /** Adorn the Intent with Setup Wizard-related extras. */ protected Intent decorateIntent(Intent intent) { Loading
src/org/lineageos/setupwizard/SubBaseActivity.java +4 −1 Original line number Diff line number Diff line Loading @@ -73,7 +73,10 @@ public abstract class SubBaseActivity extends BaseSetupWizardActivity { subactivityIntent.putExtra(EXTRA_WIZARD_BUNDLE, wizardBundle); } try { // Ensure the ActivityResultLauncher is registered before using it if (mSubactivityResultLauncher != null) { mSubactivityResultLauncher.launch(subactivityIntent); } } catch (ActivityNotFoundException e) { Log.w(TAG, "activity not found; start next screen and finish; intent=" + intent); mIsSubactivityNotFound = true; Loading