Mobile native Wearable native

Package Manager

The package manager is used to retrieve detailed information of the installed packages on the device. This information includes the package name, label, path to the icon image, version, type, and installed storage.

To retrieve package information, get the package_info_h object using the package_info_create() or package_manager_get_package_info() function.

Use the package_manager_foreach_package_info() function to retrieve the package information of all installed packages. As a result, the package_manager_package_info_cb() callback is invoked and you can get package information.

Go to top