1# BundleInfo 2 3> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** 4> 本模块首批接口从API version 7 开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 5 6应用包的信息,通过[bundle.getBundleInfo](js-apis-Bundle.md#bundlegetbundleinfodeprecated)获取。 7 8## BundleInfo<sup>(deprecated)<sup> 9 10> 从API version 9开始不再维护,建议使用[bundleManager-BundleInfo](js-apis-bundleManager-bundleInfo.md)替代。 11 12 **系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework。 13 14| 名称 | 类型 | 可读 | 可写 | 说明 | 15| --------------------------------- | ------------------------------------------------------------ | ---- | ---- | ------------------------------------------------------------ | 16| name | string | 是 | 否 | 应用包的名称。 | 17| type | string | 是 | 否 | 应用包类型。 | 18| appId | string | 是 | 否 | 应用包里应用程序的id。 | 19| uid | number | 是 | 否 | 应用包里应用程序的uid。 | 20| installTime | number | 是 | 否 | HAP包安装时间。 | 21| updateTime | number | 是 | 否 | HAP包更新时间。 | 22| appInfo | [ApplicationInfo](js-apis-bundle-ApplicationInfo.md) | 是 | 否 | 应用程序的配置信息。 | 23| abilityInfos | Array\<[AbilityInfo](js-apis-bundle-AbilityInfo.md)> | 是 | 否 | Ability的配置信息<br />通过调用[bundle.getBundleInfo](js-apis-Bundle.md#bundlegetbundleinfodeprecated)接口时,传入GET_BUNDLE_WITH_ABILITIES获取。 | 24| reqPermissions | Array\<string> | 是 | 否 | 应用运行时需向系统申请的权限集合<br />通过调用[bundle.getBundleInfo](js-apis-Bundle.md#bundlegetbundleinfodeprecated)接口时,传入GET_BUNDLE_WITH_REQUESTED_PERMISSION获取。 | 25| reqPermissionDetails | Array\<[ReqPermissionDetail](#reqpermissiondetaildeprecated)> | 是 | 否 | 应用运行时需向系统申请的权限集合的详细信息<br />通过调用[bundle.getBundleInfo](js-apis-Bundle.md#bundlegetbundleinfodeprecated)接口时,传入GET_BUNDLE_WITH_REQUESTED_PERMISSION获取。 | 26| vendor | string | 是 | 否 | 应用包的供应商。 | 27| versionCode | number | 是 | 否 | 应用包的版本号。 | 28| versionName | string | 是 | 否 | 应用包的版本文本描述信息。 | 29| compatibleVersion | number | 是 | 否 | 运行应用包所需要最低的SDK版本号。 | 30| targetVersion | number | 是 | 否 | 运行应用包所需要最高SDK版本号。 | 31| isCompressNativeLibs | boolean | 是 | 否 | 是否压缩应用包的本地库,默认为true。 | 32| hapModuleInfos | Array\<[HapModuleInfo](js-apis-bundle-HapModuleInfo.md)> | 是 | 否 | 模块的配置信息。 | 33| entryModuleName | string | 是 | 否 | Entry的模块名称。 | 34| cpuAbi | string | 是 | 否 | 应用包的cpuAbi信息。 | 35| isSilentInstallation | string | 是 | 否 | 是否通过静默安装。 | 36| minCompatibleVersionCode | number | 是 | 否 | 分布式场景下的应用包兼容的最低版本。 | 37| entryInstallationFree | boolean | 是 | 否 | Entry是否支持免安装。 | 38| reqPermissionStates<sup>8+</sup> | Array\<number> | 是 | 否 | 申请权限的授予状态。0表示申请成功,-1表示申请失败。 | 39 40 41 42## ReqPermissionDetail<sup>(deprecated)<sup> 43 44> 从API version 9开始不再维护,建议使用[ReqPermissionDetail](js-apis-bundleManager-bundleInfo.md)替代。 45 46应用运行时需向系统申请的权限集合的详细信息。 47 48 **系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework。 49 50| 名称 | 类型 | 可读 | 可写 | 说明 | 51| --------------------- | ----------------------- | ---- | ---- | ---------------------- | 52| name | string | 是 | 是 | 需要使用的权限名称。 | 53| reason | string | 是 | 是 | 描述申请权限的原因。 | 54| usedScene | [UsedScene](#usedscenedeprecated) | 是 | 是 | 权限使用的场景和时机。 | 55 56 57 58## UsedScene<sup>(deprecated)<sup> 59 60> 从API version 9开始不再维护,建议使用[UsedScene](js-apis-bundleManager-bundleInfo.md)替代。 61 62描述权限使用的场景和时机。 63 64 **系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework。 65 66| 名称 | 类型 | 可读 | 可写 | 说明 | 67| --------- | -------------- | ---- | ---- | --------------------------- | 68| abilities | Array\<string> | 是 | 是 | 使用到该权限的Ability集合。 | 69| when | string | 是 | 是 | 使用该权限的时机。 | 70