File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -49,16 +49,16 @@ Example project: [GitHub](https://github.com/sharmadhiraj/installed_apps/tree/ma
4949List<AppInfo> apps = await InstalledApps.getInstalledApps(
5050 // Optional: whether to exclude system apps from the list. Default is true.
5151 excludeSystemApps: true,
52-
52+
5353 // Optional: whether to exclude apps that cannot be launched (no launch intent). Default is true.
5454 excludeNonLaunchableApps: true,
55-
55+
5656 // Optional: whether to include app icons in the result. Default is false.
5757 withIcon: false,
58-
58+
5959 // Optional: filter apps whose package names start with this prefix. Default is null (no filtering).
6060 packageNamePrefix: "com.example",
61-
61+
6262 // Optional: filter apps by platform type (Flutter, React Native, etc.). Default is null (no filtering).
6363 platformType: PlatformType.flutter,
6464);
@@ -83,6 +83,7 @@ class AppInfo {
8383 int installedTimestamp;
8484 bool isSystemApp;
8585 bool isLaunchableApp;
86+ List<String> certificateHashes;
8687}
8788```
8889
You can’t perform that action at this time.
0 commit comments