FN2187
FN2187

Reputation: 123

Get list of all apps

How can I get a list of all android apps (not including system apps)? Also how can I get this quick actions you can normaly get by long pressing the app icon.

Upvotes: 0

Views: 130

Answers (1)

Pavel
Pavel

Reputation: 5876

To get apps list from flutter, try device apps plugin:

List<Application> apps = await DeviceApps.getInstalledApplications(
    onlyAppsWithLaunchIntent: true,
    includeSystemApps: false,
);

Upvotes: 2

Related Questions