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: Avoid multiple app instances creation #1009

Merged
merged 1 commit into from
Nov 10, 2023
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 @@ -27,6 +27,23 @@ protected void onCreate(Bundle savedInstanceState) {
ImmersiveBars.changeBarColors(this, isDarkMode);
super.onCreate(null);
RNBootSplash.init(R.drawable.bootsplash, MainActivity.this);

/**
* We want to prevent the app from opening inside another app's task.
* Some apps (like Google Files) will open the app inside their own task, even if the app is already running,
* And ignore the launchMode="singleTask" in the AndroidManifest.xml.
*
* See:
* https://stackoverflow.com/questions/57750124/launchmode-being-overriden-by-google-files-app-when-sharing-new-instance-of-a-s
* https://github.com/facebook/react-native/issues/39553
* https://developer.android.com/guide/components/activities/tasks-and-back-stack#IntentFlagsForTasks
* */
if (!isTaskRoot()) {
Intent newIntent = new Intent(getIntent());
newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(newIntent);
finish();
}
}

@Override
Expand Down
Loading