1# ApplicationInfo (System API)
2
3The ApplicationInfo module defines the application information. A third-party application can obtain its own application information through **bundleManager.getBundleInfoForSelf**, with at least **GETBUNDLEINFOWITHAPPLICATION** passed in to **bundleFlags**.
4
5> **NOTE**
6>
7> The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version.
8>
9> This topic describes only system APIs provided by the module. For details about its public APIs, see [ApplicationInfo](js-apis-bundleManager-applicationInfo.md).
10
11## ApplicationInfo
12
13**System capability**: SystemCapability.BundleManager.BundleFramework.Core
14
15**System API**: This is a system API.
16
17| Name     | Type          | Read-Only| Optional| Description                       |
18| --------- | -------------- | ---- | ---- | --------------------------- |
19| flags<sup>12+</sup>    | number    | Yes  | Yes  | Status set between the current application and the current user. Each bit indicates a specific Boolean status.<br>**System API**: This property can be used in system APIs since API version 12.|
20
21
22## PreinstalledApplicationInfo<sup>12+<sup>
23
24**System capability**: SystemCapability.BundleManager.BundleFramework.Core
25
26**System API**: This is a system API.
27
28| Name     | Type          | Read-Only| Optional| Description                       |
29| --------- | -------------- | ---- | ---- | --------------------------- |
30| bundleName | string         | Yes  | No  | Bundle name of the application.                |
31| moduleName | string         | Yes  | No  | Module name of the application. By default, the name of the entry module is returned. If the entry module does not exist, the name of the feature module is returned.           |
32| iconId | number         | Yes  | No  | Icon ID of the application.           |
33| labelId | number         | Yes  | No  | Label ID of the application.           |
34