Gets the application icon as a base64-encoded string.
The package name whose icon to retrieve
Base64-encoded image string, or null if the icon cannot be retrieved
Gets the application icon as a base64-encoded string with flags.
The package name whose icon to retrieve
Additional flags for icon retrieval
Base64-encoded image string, or null if the icon cannot be retrieved
Gets the application icon as a base64-encoded string for a specific user.
The package name whose icon to retrieve
Additional flags for icon retrieval
The user ID to query the icon for
Base64-encoded image string, or null if the icon cannot be retrieved
Gets detailed information about a specific application package.
The package name to look up (e.g., "com.example.app")
A JSON string containing WXApplicationInfo, or empty object "{}" if not found
Gets detailed information about a specific application package with flags.
The package name to look up
Additional flags to control what information is retrieved
A JSON string containing WXApplicationInfo, or empty object "{}" if not found
Gets detailed information about a specific application package with flags for a specific user.
The package name to look up
Additional flags to control what information is retrieved
The user ID to query packages for (useful for multi-user devices)
A JSON string containing WXApplicationInfo, or empty object "{}" if not found
Gets a list of all installed package names on the device.
A JSON string containing an array of package names
Gets a list of all installed package names with specific flags.
Flags to filter which packages are included in the result
A JSON string containing an array of package names
Gets a list of all installed package names for a specific user with flags.
Flags to filter which packages are included in the result
The user ID to query packages for
A JSON string containing an array of package names
Provides access to Android package management functionality.
This interface allows you to query information about installed applications, retrieve app metadata, get application icons, and list installed packages. It's essential for building tools that need to inspect or manage Android apps.