Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(android): set default exitOnClose property to true #14150

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,9 @@ protected void fillIntent(Activity activity, Intent intent)
// We're opening child activity from Titanium root activity. Have it exit out of app by default.
// Note: If launched via startActivityForResult(), then root activity won't be the task's root.
intent.putExtra(TiC.INTENT_PROPERTY_FINISH_ROOT, true);

// Set default value on first window proxy also if not already set above.
setProperty(TiC.PROPERTY_EXIT_ON_CLOSE, true);
}

// Set the theme property
Expand Down
Loading