Skip to content

Instantly share code, notes, and snippets.

@201949
201949 / Android 13 - Launch another app
Last active January 21, 2024 13:34
Launch another Android app using an intent with a package name, with a fix for Android 13 and later
//Launch another Android app using an intent with a package name, with a fix for Android 13 and later. Java code.
public void startNewActivity(Context context, String packageName) {
Intent intent = context.getPackageManager().getLaunchIntentForPackage(packageName);
//Fix for Android 13
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) {
intent.addCategory(Intent.CATEGORY_LAUNCHER);
}
if (intent == null) {