Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marchbold/afb7693d4b86c933212275592b057a23 to your computer and use it in GitHub Desktop.
Save marchbold/afb7693d4b86c933212275592b057a23 to your computer and use it in GitHub Desktop.
Using the PackageManager extension to get installed applications
var installedPackages:Array = PackageManager.service.getInstalledApplications();
if (installedPackages != null)
{
for each (var packageInfo:PackageInfo in installedPackages)
{
trace( "package: " + packageInfo.toString() );
}
}
// com.distriqt.PackageManager
@marchbold
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment