In my application I want check if application on device or not!
I write below codes, below android 11 it's work and not any problem! but above android 11 not check if this application installed or not!
My codes :
public static Intent openAppWithPackage(Context context, String packageName) {
Intent launchIntent = context.getPackageManager().getLaunchIntentForPackage(packageName);
return launchIntent;
}
How can I fix it in android 11+ ?