Reputation: 123
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
Reputation: 5876
To get apps list from flutter, try device apps plugin:
List<Application> apps = await DeviceApps.getInstalledApplications(
onlyAppsWithLaunchIntent: true,
includeSystemApps: false,
);
Upvotes: 2