We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Previously worked fine (1.3.1) but now (1.5.2) hides apps like YouTube and Chrome.
I can still find them by setting excludeSystemApps=false. But then I have all the noise of the random system stuff.
excludeSystemApps=false
What changed and how can I continue with the previous logic of including the user-facing system apps but excluding the under-the-hood apps?
The text was updated successfully, but these errors were encountered:
I suspect this change may be related?
/android/src/main/kotlin/com/sharmadhiraj/installed_apps/InstalledAppsPlugin.kt
private fun isSystemApp(packageManager: PackageManager, packageName: String): Boolean { - return packageManager.getLaunchIntentForPackage(packageName) == null + return try { + val ai = packageManager.getApplicationInfo(packageName, 0) + (ai.flags and ApplicationInfo.FLAG_SYSTEM) != 0 + } catch (e: PackageManager.NameNotFoundException) { + e.printStackTrace() + false + } #}
Sorry, something went wrong.
Perhaps add an 'excludeUnlaunchable'?
No branches or pull requests
Previously worked fine (1.3.1) but now (1.5.2) hides apps like YouTube and Chrome.
I can still find them by setting
excludeSystemApps=false
. But then I have all the noise of the random system stuff.What changed and how can I continue with the previous logic of including the user-facing system apps but excluding the under-the-hood apps?
The text was updated successfully, but these errors were encountered: