js-apis-bundle-ApplicationInfo.md 4.9 KB
Newer Older
W
wusongqing 已提交
1 2
# ApplicationInfo

W
wusongqing 已提交
3 4
The **ApplicationInfo** module provides application information. Unless otherwise specified, all attributes are obtained through **GET_BUNDLE_DEFAULT**.

W
wusongqing 已提交
5 6
> **NOTE**
>
W
wusongqing 已提交
7 8
> The initial APIs of this module are supported since API version 7. Newly added APIs will be marked with a superscript to indicate their earliest API version.

9 10 11
## ApplicationInfo<sup>(deprecated)<sup>

> This API is deprecated since API version 9. You are advised to use [ApplicationInfo](js-apis-bundleManager-applicationInfo.md) instead.
W
wusongqing 已提交
12 13 14

**System capability**: SystemCapability.BundleManager.BundleFramework

W
wusongqing 已提交
15 16 17 18 19 20 21 22
| Name                      | Type                                                        | Readable| Writable| Description                                                        |
| -------------------------- | ------------------------------------------------------------ | ---- | ---- | ------------------------------------------------------------ |
| name                       | string                                                       | Yes  | No  | Application name.                                              |
| description                | string                                                       | Yes  | No  | Application description.                                              |
| descriptionId              | number                                                       | Yes  | No  | Application description ID.                                            |
| systemApp                  | boolean                                                      | Yes  | No  | Whether the application is a system application. The default value is **false**.                         |
| enabled                    | boolean                                                      | Yes  | No  | Whether the application is enabled. The default value is **true**.                        |
| label                      | string                                                       | Yes  | No  | Application label.                                              |
23
| labelId<sup>(deprecated)</sup> | string                                                       | Yes  | No  | Application label ID.<br>\- **NOTE**: This attribute is deprecated from API version 9. Use **labelIndex** instead.|
W
wusongqing 已提交
24
| icon                       | string                                                       | Yes  | No  | Application icon.                                              |
25
| iconId<sup>(deprecated)</sup> | string                                                       | Yes  | No  | Application icon ID.<br>\- **NOTE**: This attribute is deprecated from API version 9. Use **iconIndex** instead.|
W
wusongqing 已提交
26 27 28
| process                    | string                                                       | Yes  | No  | Process in which the application runs. If this parameter is not set, the bundle name is used.                  |
| supportedModes             | number                                                       | Yes  | No  | Running modes supported by the application.                                      |
| moduleSourceDirs           | Array\<string>                                               | Yes  | No  | Relative paths for storing application resources.                                |
W
wusongqing 已提交
29
| permissions                | Array\<string>                                               | Yes  | No  | Permissions required for accessing the application.<br>The value is obtained by passing **GET_APPLICATION_INFO_WITH_PERMISSION**.|
W
wusongqing 已提交
30 31 32
| moduleInfos                | Array\<[ModuleInfo](js-apis-bundle-ModuleInfo.md)>           | Yes  | No  | Application module information.                                          |
| entryDir                   | string                                                       | Yes  | No  | Path for storing application files.                                      |
| codePath<sup>8+</sup>      | string                                                       | Yes  | No  | Installation directory of the application.                                          |
W
wusongqing 已提交
33
| metaData<sup>8+</sup>      | Map\<string, Array\<[CustomizeData](js-apis-bundle-CustomizeData.md)>> | Yes  | No  | Custom metadata of the application.<br>The value is obtained by passing **GET_APPLICATION_INFO_WITH_METADATA**.|
W
wusongqing 已提交
34 35 36 37
| removable<sup>8+</sup>     | boolean                                                      | Yes  | No  | Whether the application is removable.                                      |
| accessTokenId<sup>8+</sup> | number                                                       | Yes  | No  | Access token ID of the application.                                     |
| uid<sup>8+</sup>           | number                                                       | Yes  | No  | UID of the application.                                               |
| entityType<sup>8+</sup>    | string                                                       | Yes  | No  | Entity type of the application.                                          |