Change Type Old Version New Version d.ts File
Added NA Class name: appControl;
Method or attribute name: function setDisposedStatus(appId: string, disposedWant: Want, callback: AsyncCallback<void>): void;
@ohos.bundle.appControl.d.ts
Added NA Class name: appControl;
Method or attribute name: function setDisposedStatus(appId: string, disposedWant: Want): Promise<void>;
@ohos.bundle.appControl.d.ts
Added NA Class name: appControl;
Method or attribute name: function getDisposedStatus(appId: string, callback: AsyncCallback<Want>): void;
@ohos.bundle.appControl.d.ts
Added NA Class name: appControl;
Method or attribute name: function getDisposedStatus(appId: string): Promise<Want>;
@ohos.bundle.appControl.d.ts
Added NA Class name: appControl;
Method or attribute name: function deleteDisposedStatus(appId: string, callback: AsyncCallback<void>): void;
@ohos.bundle.appControl.d.ts
Added NA Class name: appControl;
Method or attribute name: function deleteDisposedStatus(appId: string): Promise<void>;
@ohos.bundle.appControl.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleInfoForSelf(bundleFlags: number): Promise<BundleInfo>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleInfoForSelf(bundleFlags: number, callback: AsyncCallback<BundleInfo>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback<BundleInfo>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleInfo(bundleName: string, bundleFlags: number, userId: number, callback: AsyncCallback<BundleInfo>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleInfo(bundleName: string, bundleFlags: number, userId?: number): Promise<BundleInfo>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getApplicationInfo(bundleName: string, appFlags: number, callback: AsyncCallback<ApplicationInfo>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getApplicationInfo(bundleName: string, appFlags: number, userId: number, callback: AsyncCallback<ApplicationInfo>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getApplicationInfo(bundleName: string, appFlags: number, userId?: number): Promise<ApplicationInfo>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getAllBundleInfo(bundleFlags: number, callback: AsyncCallback<Array<BundleInfo>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getAllBundleInfo(bundleFlags: number, userId: number, callback: AsyncCallback<Array<BundleInfo>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getAllBundleInfo(bundleFlags: number, userId?: number): Promise<Array<BundleInfo>>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getAllApplicationInfo(appFlags: number, callback: AsyncCallback<Array<ApplicationInfo>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getAllApplicationInfo(appFlags: number, userId: number, callback: AsyncCallback<Array<ApplicationInfo>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getAllApplicationInfo(appFlags: number, userId?: number): Promise<Array<ApplicationInfo>>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function queryAbilityInfo(want: Want, abilityFlags: number, callback: AsyncCallback<Array<AbilityInfo>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function queryAbilityInfo(want: Want, abilityFlags: number, userId: number, callback: AsyncCallback<Array<AbilityInfo>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function queryAbilityInfo(want: Want, abilityFlags: number, userId?: number): Promise<Array<AbilityInfo>>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function queryExtensionAbilityInfo(want: Want, extensionAbilityType: ExtensionAbilityType, extensionAbilityFlags: number, callback: AsyncCallback<Array<ExtensionAbilityInfo>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function queryExtensionAbilityInfo(want: Want, extensionAbilityType: ExtensionAbilityType, extensionAbilityFlags: number, userId: number, callback: AsyncCallback<Array<ExtensionAbilityInfo>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function queryExtensionAbilityInfo(want: Want, extensionAbilityType: ExtensionAbilityType, extensionAbilityFlags: number, userId?: number): Promise<Array<ExtensionAbilityInfo>>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleNameByUid(uid: number, callback: AsyncCallback<string>): void
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleNameByUid(uid: number): Promise<string>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number, callback: AsyncCallback<BundleInfo>): void
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number): Promise<BundleInfo>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function cleanBundleCacheFiles(bundleName: string, callback: AsyncCallback<void>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function cleanBundleCacheFiles(bundleName: string): Promise<void>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function setApplicationEnabled(bundleName: string, isEnabled: boolean, callback: AsyncCallback<void>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function setApplicationEnabled(bundleName: string, isEnabled: boolean): Promise<void>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function setAbilityEnabled(info: AbilityInfo, isEnabled: boolean, callback: AsyncCallback<void>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function setAbilityEnabled(info: AbilityInfo, isEnabled: boolean): Promise<void>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function isApplicationEnabled(bundleName: string, callback: AsyncCallback<boolean>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function isApplicationEnabled(bundleName: string): Promise<boolean>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function isAbilityEnabled(info: AbilityInfo, callback: AsyncCallback<boolean>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function isAbilityEnabled(info: AbilityInfo): Promise<boolean>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getLaunchWantForBundle(bundleName: string, userId: number, callback: AsyncCallback<Want>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getLaunchWantForBundle(bundleName: string, callback: AsyncCallback<Want>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getLaunchWantForBundle(bundleName: string, userId?: number): Promise<Want>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getProfileByAbility(moduleName: string, abilityName: string, metadataName: string, callback: AsyncCallback<Array<string>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getProfileByAbility(moduleName: string, abilityName: string, metadataName?: string): Promise<Array<string>>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getProfileByExtensionAbility(moduleName: string, extensionAbilityName: string, metadataName: string, callback: AsyncCallback<Array<string>>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getProfileByExtensionAbility(moduleName: string, extensionAbilityName: string, metadataName?: string): Promise<Array<string>>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getPermissionDef(permissionName: string, callback: AsyncCallback<PermissionDef>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getPermissionDef(permissionName: string): Promise<PermissionDef>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getAbilityLabel(bundleName: string, moduleName: string, abilityName: string, callback: AsyncCallback<string>): void;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getAbilityLabel(bundleName: string, moduleName: string, abilityName: string): Promise<string>;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getApplicationInfoSync(bundleName: string, applicationFlags: number, userId: number) : ApplicationInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getApplicationInfoSync(bundleName: string, applicationFlags: number) : ApplicationInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleInfoSync(bundleName: string, bundleFlags: number, userId: number): BundleInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: function getBundleInfoSync(bundleName: string, bundleFlags: number): BundleInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type ApplicationInfo = _ApplicationInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type Metadata = _Metadata;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type BundleInfo = _BundleInfo.BundleInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type UsedScene = _BundleInfo.UsedScene;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type ReqPermissionDetail = _BundleInfo.ReqPermissionDetail;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type SignatureInfo = _BundleInfo.SignatureInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type HapModuleInfo = _HapModuleInfo.HapModuleInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type PreloadItem = _HapModuleInfo.PreloadItem;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type Dependency = _HapModuleInfo.Dependency;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type AbilityInfo = _AbilityInfo.AbilityInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type WindowSize = _AbilityInfo.WindowSize;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type ExtensionAbilityInfo = _ExtensionAbilityInfo.ExtensionAbilityInfo;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type PermissionDef = _PermissionDef;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleManager;
Method or attribute name: export type ElementName = _ElementName;
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_INFO_DEFAULT = 0x00000000
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_INFO_WITH_APPLICATION = 0x00000001
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_INFO_WITH_HAP_MODULE = 0x00000002
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_INFO_WITH_ABILITY = 0x00000004
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_INFO_WITH_EXTENSION_ABILITY = 0x00000008
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_INFO_WITH_REQUESTED_PERMISSION = 0x00000010
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_INFO_WITH_METADATA = 0x00000020
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_INFO_WITH_DISABLE = 0x00000040
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_INFO_WITH_SIGNATURE_INFO = 0x00000080
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ApplicationFlag;
Method or attribute name: GET_APPLICATION_INFO_DEFAULT = 0x00000000
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ApplicationFlag;
Method or attribute name: GET_APPLICATION_INFO_WITH_PERMISSION = 0x00000001
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ApplicationFlag;
Method or attribute name: GET_APPLICATION_INFO_WITH_METADATA = 0x00000002
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ApplicationFlag;
Method or attribute name: GET_APPLICATION_INFO_WITH_DISABLE = 0x00000004
@ohos.bundle.bundleManager.d.ts
Added NA Class name: AbilityFlag;
Method or attribute name: GET_ABILITY_INFO_DEFAULT = 0x00000000
@ohos.bundle.bundleManager.d.ts
Added NA Class name: AbilityFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_PERMISSION = 0x00000001
@ohos.bundle.bundleManager.d.ts
Added NA Class name: AbilityFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_APPLICATION = 0x00000002
@ohos.bundle.bundleManager.d.ts
Added NA Class name: AbilityFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_METADATA = 0x00000004
@ohos.bundle.bundleManager.d.ts
Added NA Class name: AbilityFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_DISABLE = 0x00000008
@ohos.bundle.bundleManager.d.ts
Added NA Class name: AbilityFlag;
Method or attribute name: GET_ABILITY_INFO_ONLY_SYSTEM_APP = 0x00000010
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityFlag;
Method or attribute name: GET_EXTENSION_ABILITY_INFO_DEFAULT = 0x00000000
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityFlag;
Method or attribute name: GET_EXTENSION_ABILITY_INFO_WITH_PERMISSION = 0x00000001
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityFlag;
Method or attribute name: GET_EXTENSION_ABILITY_INFO_WITH_APPLICATION = 0x00000002
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityFlag;
Method or attribute name: GET_EXTENSION_ABILITY_INFO_WITH_METADATA = 0x00000004
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: FORM = 0
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: WORK_SCHEDULER = 1
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: INPUT_METHOD = 2
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: SERVICE = 3
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: ACCESSIBILITY = 4
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: DATA_SHARE = 5
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: FILE_SHARE = 6
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: STATIC_SUBSCRIBER = 7
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: WALLPAPER = 8
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: BACKUP = 9
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: WINDOW = 10
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: ENTERPRISE_ADMIN = 11
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: THUMBNAIL = 13
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: PREVIEW = 14
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ExtensionAbilityType;
Method or attribute name: UNSPECIFIED = 255
@ohos.bundle.bundleManager.d.ts
Added NA Class name: PermissionGrantState;
Method or attribute name: PERMISSION_DENIED = -1
@ohos.bundle.bundleManager.d.ts
Added NA Class name: PermissionGrantState;
Method or attribute name: PERMISSION_GRANTED = 0
@ohos.bundle.bundleManager.d.ts
Added NA Class name: SupportWindowMode;
Method or attribute name: FULL_SCREEN = 0
@ohos.bundle.bundleManager.d.ts
Added NA Class name: SupportWindowMode;
Method or attribute name: SPLIT = 1
@ohos.bundle.bundleManager.d.ts
Added NA Class name: SupportWindowMode;
Method or attribute name: FLOATING = 2
@ohos.bundle.bundleManager.d.ts
Added NA Class name: LaunchType;
Method or attribute name: SINGLETON = 0
@ohos.bundle.bundleManager.d.ts
Added NA Class name: LaunchType;
Method or attribute name: MULTITON = 1
@ohos.bundle.bundleManager.d.ts
Added NA Class name: LaunchType;
Method or attribute name: SPECIFIED = 2
@ohos.bundle.bundleManager.d.ts
Added NA Class name: AbilityType;
Method or attribute name: PAGE = 1
@ohos.bundle.bundleManager.d.ts
Added NA Class name: AbilityType;
Method or attribute name: SERVICE = 2
@ohos.bundle.bundleManager.d.ts
Added NA Class name: AbilityType;
Method or attribute name: DATA = 3
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: UNSPECIFIED
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: LANDSCAPE
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: PORTRAIT
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: FOLLOW_RECENT
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: LANDSCAPE_INVERTED
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: PORTRAIT_INVERTED
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: AUTO_ROTATION
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: AUTO_ROTATION_LANDSCAPE
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: AUTO_ROTATION_PORTRAIT
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: AUTO_ROTATION_RESTRICTED
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: AUTO_ROTATION_LANDSCAPE_RESTRICTED
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: AUTO_ROTATION_PORTRAIT_RESTRICTED
@ohos.bundle.bundleManager.d.ts
Added NA Class name: DisplayOrientation;
Method or attribute name: LOCKED
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ModuleType;
Method or attribute name: ENTRY = 1
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ModuleType;
Method or attribute name: FEATURE = 2
@ohos.bundle.bundleManager.d.ts
Added NA Class name: ModuleType;
Method or attribute name: SHARED = 3
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleType;
Method or attribute name: APP = 0
@ohos.bundle.bundleManager.d.ts
Added NA Class name: BundleType;
Method or attribute name: ATOMIC_SERVICE = 1
@ohos.bundle.bundleManager.d.ts
Added NA Class name: bundleMonitor;
Method or attribute name: type BundleChangedEvent = 'add' | 'update' | 'remove';
@ohos.bundle.bundleMonitor.d.ts
Added NA Class name: bundleMonitor;
Method or attribute name: function on(type: BundleChangedEvent, callback: Callback<BundleChangedInfo>): void;
@ohos.bundle.bundleMonitor.d.ts
Added NA Class name: bundleMonitor;
Method or attribute name: function off(type: BundleChangedEvent, callback?: Callback<BundleChangedInfo>): void;
@ohos.bundle.bundleMonitor.d.ts
Added NA Class name: BundleChangedInfo;
Method or attribute name: readonly bundleName: string;
@ohos.bundle.bundleMonitor.d.ts
Added NA Class name: BundleChangedInfo;
Method or attribute name: readonly userId: number;
@ohos.bundle.bundleMonitor.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function isDefaultApplication(type: string, callback: AsyncCallback<boolean>) : void;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function isDefaultApplication(type: string) : Promise<boolean>;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function getDefaultApplication(type: string, userId: number, callback: AsyncCallback<BundleInfo>) : void;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function getDefaultApplication(type: string, callback: AsyncCallback<BundleInfo>) : void;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function getDefaultApplication(type: string, userId?: number) : Promise<BundleInfo>;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function setDefaultApplication(type: string, elementName: ElementName, userId: number, callback: AsyncCallback<void>) : void;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function setDefaultApplication(type: string, elementName: ElementName, callback: AsyncCallback<void>) : void;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function setDefaultApplication(type: string, elementName: ElementName, userId?: number) : Promise<void>;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function resetDefaultApplication(type: string, userId: number, callback: AsyncCallback<void>) : void;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function resetDefaultApplication(type: string, callback: AsyncCallback<void>) : void;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: defaultAppManager;
Method or attribute name: function resetDefaultApplication(type: string, userId?: number) : Promise<void>;
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: ApplicationType;
Method or attribute name: BROWSER = "Web Browser"
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: ApplicationType;
Method or attribute name: IMAGE = "Image Gallery"
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: ApplicationType;
Method or attribute name: AUDIO = "Audio Player"
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: ApplicationType;
Method or attribute name: VIDEO = "Video Player"
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: ApplicationType;
Method or attribute name: PDF = "PDF Viewer"
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: ApplicationType;
Method or attribute name: WORD = "Word Viewer"
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: ApplicationType;
Method or attribute name: EXCEL = "Excel Viewer"
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: ApplicationType;
Method or attribute name: PPT = "PPT Viewer"
@ohos.bundle.defaultAppManager.d.ts
Added NA Class name: distributedBundleManager;
Method or attribute name: function getRemoteAbilityInfo(elementName: ElementName, callback: AsyncCallback<RemoteAbilityInfo>): void;
@ohos.bundle.distributedBundleManager.d.ts
Added NA Class name: distributedBundleManager;
Method or attribute name: function getRemoteAbilityInfo(elementName: ElementName): Promise<RemoteAbilityInfo>;
@ohos.bundle.distributedBundleManager.d.ts
Added NA Class name: distributedBundleManager;
Method or attribute name: function getRemoteAbilityInfo(elementNames: Array<ElementName>, callback: AsyncCallback<Array<RemoteAbilityInfo>>): void;
@ohos.bundle.distributedBundleManager.d.ts
Added NA Class name: distributedBundleManager;
Method or attribute name: function getRemoteAbilityInfo(elementNames: Array<ElementName>): Promise<Array<RemoteAbilityInfo>>;
@ohos.bundle.distributedBundleManager.d.ts
Added NA Class name: distributedBundleManager;
Method or attribute name: function getRemoteAbilityInfo(elementName: ElementName, locale: string, callback: AsyncCallback<RemoteAbilityInfo>): void;
@ohos.bundle.distributedBundleManager.d.ts
Added NA Class name: distributedBundleManager;
Method or attribute name: function getRemoteAbilityInfo(elementName: ElementName, locale: string): Promise<RemoteAbilityInfo>;
@ohos.bundle.distributedBundleManager.d.ts
Added NA Class name: distributedBundleManager;
Method or attribute name: function getRemoteAbilityInfo(elementNames: Array<ElementName>, locale: string, callback: AsyncCallback<Array<RemoteAbilityInfo>>): void;
@ohos.bundle.distributedBundleManager.d.ts
Added NA Class name: distributedBundleManager;
Method or attribute name: function getRemoteAbilityInfo(elementNames: Array<ElementName>, locale: string): Promise<Array<RemoteAbilityInfo>>;
@ohos.bundle.distributedBundleManager.d.ts
Added NA Class name: distributedBundleManager;
Method or attribute name: export type RemoteAbilityInfo = _RemoteAbilityInfo;
@ohos.bundle.distributedBundleManager.d.ts
Added NA Class name: freeInstall;
Method or attribute name: function setHapModuleUpgradeFlag(bundleName: string, moduleName: string, upgradeFlag: UpgradeFlag, callback: AsyncCallback<void>) : void;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: function setHapModuleUpgradeFlag(bundleName: string, moduleName: string, upgradeFlag: UpgradeFlag): Promise<void>;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: function isHapModuleRemovable(bundleName: string, moduleName: string, callback: AsyncCallback<boolean>): void;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: function isHapModuleRemovable(bundleName: string, moduleName: string): Promise<boolean>;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: function getBundlePackInfo(bundleName: string, bundlePackFlag : BundlePackFlag, callback: AsyncCallback<BundlePackInfo>): void;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: function getBundlePackInfo(bundleName: string, bundlePackFlag : BundlePackFlag): Promise<BundlePackInfo>;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: function getDispatchInfo(callback: AsyncCallback<DispatchInfo>): void;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: function getDispatchInfo(): Promise<DispatchInfo>;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type DispatchInfo = _DispatchInfo;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type BundlePackInfo = _PackInfo.BundlePackInfo;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type PackageConfig = _PackInfo.PackageConfig;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type PackageSummary = _PackInfo.PackageSummary;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type BundleConfigInfo = _PackInfo.BundleConfigInfo;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type ExtensionAbility = _PackInfo.ExtensionAbility;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type ModuleConfigInfo = _PackInfo.ModuleConfigInfo;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type ModuleDistroInfo = _PackInfo.ModuleDistroInfo;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type ModuleAbilityInfo = _PackInfo.ModuleAbilityInfo;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type AbilityFormInfo = _PackInfo.AbilityFormInfo;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type Version = _PackInfo.Version;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: freeInstall;
Method or attribute name: export type ApiVersion = _PackInfo.ApiVersion;
@ohos.bundle.freeInstall.d.ts
Added NA Class name: UpgradeFlag;
Method or attribute name: NOT_UPGRADE = 0
@ohos.bundle.freeInstall.d.ts
Added NA Class name: UpgradeFlag;
Method or attribute name: SINGLE_UPGRADE = 1
@ohos.bundle.freeInstall.d.ts
Added NA Class name: UpgradeFlag;
Method or attribute name: RELATION_UPGRADE = 2
@ohos.bundle.freeInstall.d.ts
Added NA Class name: BundlePackFlag;
Method or attribute name: GET_PACK_INFO_ALL = 0x00000000
@ohos.bundle.freeInstall.d.ts
Added NA Class name: BundlePackFlag;
Method or attribute name: GET_PACKAGES = 0x00000001
@ohos.bundle.freeInstall.d.ts
Added NA Class name: BundlePackFlag;
Method or attribute name: GET_BUNDLE_SUMMARY = 0x00000002
@ohos.bundle.freeInstall.d.ts
Added NA Class name: BundlePackFlag;
Method or attribute name: GET_MODULE_SUMMARY = 0x00000004
@ohos.bundle.freeInstall.d.ts
Added NA Class name: installer;
Method or attribute name: function getBundleInstaller(callback: AsyncCallback<BundleInstaller>): void
@ohos.bundle.installer.d.ts
Added NA Class name: installer;
Method or attribute name: function getBundleInstaller(): Promise<BundleInstaller>;
@ohos.bundle.installer.d.ts
Added NA Class name: BundleInstaller;
Method or attribute name: install(hapFilePaths: Array<string>, installParam: InstallParam, callback: AsyncCallback<void>) : void;
@ohos.bundle.installer.d.ts
Added NA Class name: BundleInstaller;
Method or attribute name: install(hapFilePaths: Array<string>, callback: AsyncCallback<void>) : void;
@ohos.bundle.installer.d.ts
Added NA Class name: BundleInstaller;
Method or attribute name: install(hapFilePaths: Array<string>, installParam?: InstallParam) : Promise<void>;
@ohos.bundle.installer.d.ts
Added NA Class name: BundleInstaller;
Method or attribute name: uninstall(bundleName: string, installParam: InstallParam, callback : AsyncCallback<void>) : void;
@ohos.bundle.installer.d.ts
Added NA Class name: BundleInstaller;
Method or attribute name: uninstall(bundleName: string, callback : AsyncCallback<void>) : void;
@ohos.bundle.installer.d.ts
Added NA Class name: BundleInstaller;
Method or attribute name: uninstall(bundleName: string, installParam?: InstallParam) : Promise<void>;
@ohos.bundle.installer.d.ts
Added NA Class name: BundleInstaller;
Method or attribute name: recover(bundleName: string, installParam: InstallParam, callback: AsyncCallback<void>): void;
@ohos.bundle.installer.d.ts
Added NA Class name: BundleInstaller;
Method or attribute name: recover(bundleName: string, callback: AsyncCallback<void>): void;
@ohos.bundle.installer.d.ts
Added NA Class name: BundleInstaller;
Method or attribute name: recover(bundleName: string, installParam?: InstallParam) : Promise<void>;
@ohos.bundle.installer.d.ts
Added NA Class name: HashParam;
Method or attribute name: moduleName: string;
@ohos.bundle.installer.d.ts
Added NA Class name: HashParam;
Method or attribute name: hashValue: string;
@ohos.bundle.installer.d.ts
Added NA Class name: InstallParam;
Method or attribute name: userId?: number;
@ohos.bundle.installer.d.ts
Added NA Class name: InstallParam;
Method or attribute name: installFlag?: number;
@ohos.bundle.installer.d.ts
Added NA Class name: InstallParam;
Method or attribute name: isKeepData?: boolean;
@ohos.bundle.installer.d.ts
Added NA Class name: InstallParam;
Method or attribute name: hashParams?: Array<HashParam>;
@ohos.bundle.installer.d.ts
Added NA Class name: InstallParam;
Method or attribute name: crowdtestDeadline?: number;
@ohos.bundle.installer.d.ts
Added NA Class name: launcherBundleManager;
Method or attribute name: function getLauncherAbilityInfo(bundleName: string, userId: number, callback: AsyncCallback<Array<LauncherAbilityInfo>>) : void;
@ohos.bundle.launcherBundleManager.d.ts
Added NA Class name: launcherBundleManager;
Method or attribute name: function getLauncherAbilityInfo(bundleName: string, userId: number) : Promise<Array<LauncherAbilityInfo>>;
@ohos.bundle.launcherBundleManager.d.ts
Added NA Class name: launcherBundleManager;
Method or attribute name: function getAllLauncherAbilityInfo(userId: number, callback: AsyncCallback<Array<LauncherAbilityInfo>>) : void;
@ohos.bundle.launcherBundleManager.d.ts
Added NA Class name: launcherBundleManager;
Method or attribute name: function getAllLauncherAbilityInfo(userId: number) : Promise<Array<LauncherAbilityInfo>>;
@ohos.bundle.launcherBundleManager.d.ts
Added NA Class name: launcherBundleManager;
Method or attribute name: function getShortcutInfo(bundleName :string, callback: AsyncCallback<Array<ShortcutInfo>>) : void;
@ohos.bundle.launcherBundleManager.d.ts
Added NA Class name: launcherBundleManager;
Method or attribute name: function getShortcutInfo(bundleName : string) : Promise<Array<ShortcutInfo>>;
@ohos.bundle.launcherBundleManager.d.ts
Added NA Class name: launcherBundleManager;
Method or attribute name: export type LauncherAbilityInfo = _LauncherAbilityInfo;
@ohos.bundle.launcherBundleManager.d.ts
Added NA Class name: launcherBundleManager;
Method or attribute name: export type ShortcutInfo = _ShortcutInfo;
@ohos.bundle.launcherBundleManager.d.ts
Added NA Class name: launcherBundleManager;
Method or attribute name: export type ShortcutWant = _ShortcutWant;
@ohos.bundle.launcherBundleManager.d.ts
Added NA Class name: zlib;
Method or attribute name: function compressFile(inFile: string, outFile: string, options: Options, callback: AsyncCallback<void>): void;
@ohos.zlib.d.ts
Added NA Class name: zlib;
Method or attribute name: function compressFile(inFile:string, outFile:string, options: Options): Promise<void>;
@ohos.zlib.d.ts
Added NA Class name: zlib;
Method or attribute name: function decompressFile(inFile: string, outFile: string, options: Options, callback: AsyncCallback<void>): void;
@ohos.zlib.d.ts
Added NA Class name: zlib;
Method or attribute name: function decompressFile(inFile: string, outFile: string, options: Options): Promise<void>;
@ohos.zlib.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly bundleName: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly moduleName: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly name: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly label: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly labelId: number;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly description: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly descriptionId: number;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly icon: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly iconId: number;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly process: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly exported: boolean;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly type: bundleManager.AbilityType;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly orientation: bundleManager.DisplayOrientation;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly launchType: bundleManager.LaunchType;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly permissions: Array<string>;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly readPermission: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly writePermission: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly uri: string;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly deviceTypes: Array<string>;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly applicationInfo: ApplicationInfo;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly metadata: Array<Metadata>;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly enabled: boolean;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly supportWindowModes: Array<bundleManager.SupportWindowMode>;
AbilityInfo.d.ts
Added NA Class name: AbilityInfo;
Method or attribute name: readonly windowSize: WindowSize;
AbilityInfo.d.ts
Added NA Class name: WindowSize;
Method or attribute name: readonly maxWindowRatio: number;
AbilityInfo.d.ts
Added NA Class name: WindowSize;
Method or attribute name: readonly minWindowRatio: number;
AbilityInfo.d.ts
Added NA Class name: WindowSize;
Method or attribute name: readonly maxWindowWidth: number;
AbilityInfo.d.ts
Added NA Class name: WindowSize;
Method or attribute name: readonly minWindowWidth: number;
AbilityInfo.d.ts
Added NA Class name: WindowSize;
Method or attribute name: readonly maxWindowHeight: number;
AbilityInfo.d.ts
Added NA Class name: WindowSize;
Method or attribute name: readonly minWindowHeight: number;
AbilityInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly name: string;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly description: string;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly descriptionId: number;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly enabled: boolean;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly label: string;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly labelId: number;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly icon: string;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly iconId: number;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly process: string;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly permissions: Array<string>;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly codePath: string;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly metadata: Map<string, Array<Metadata>>;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly removable: boolean;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly accessTokenId: number;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly uid: number;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly iconResource: Resource;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly labelResource: Resource;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly descriptionResource: Resource;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly appDistributionType: string;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly appProvisionType: string;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly systemApp: boolean;
ApplicationInfo.d.ts
Added NA Class name: ApplicationInfo;
Method or attribute name: readonly bundleType: bundleManager.BundleType;
ApplicationInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly name: string;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly vendor: string;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly versionCode: number;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly versionName: string;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly minCompatibleVersionCode: number;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly targetVersion: number;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly appInfo: ApplicationInfo;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly hapModulesInfo: Array<HapModuleInfo>;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly reqPermissionDetails: Array<ReqPermissionDetail>;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly permissionGrantStates: Array<bundleManager.PermissionGrantState>;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly signatureInfo: SignatureInfo;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly installTime: number;
BundleInfo.d.ts
Added NA Class name: BundleInfo;
Method or attribute name: readonly updateTime: number;
BundleInfo.d.ts
Added NA Class name: ReqPermissionDetail;
Method or attribute name: name: string;
BundleInfo.d.ts
Added NA Class name: ReqPermissionDetail;
Method or attribute name: reason: string;
BundleInfo.d.ts
Added NA Class name: ReqPermissionDetail;
Method or attribute name: reasonId: number;
BundleInfo.d.ts
Added NA Class name: ReqPermissionDetail;
Method or attribute name: usedScene: UsedScene;
BundleInfo.d.ts
Added NA Class name: UsedScene;
Method or attribute name: abilities: Array<string>;
BundleInfo.d.ts
Added NA Class name: UsedScene;
Method or attribute name: when: string;
BundleInfo.d.ts
Added NA Class name: SignatureInfo;
Method or attribute name: readonly appId: string;
BundleInfo.d.ts
Added NA Class name: SignatureInfo;
Method or attribute name: readonly fingerprint: string;
BundleInfo.d.ts
Added NA Class name: BundlePackInfo;
Method or attribute name: readonly packages: Array<PackageConfig>;
BundlePackInfo.d.ts
Added NA Class name: BundlePackInfo;
Method or attribute name: readonly summary: PackageSummary;
BundlePackInfo.d.ts
Added NA Class name: PackageConfig;
Method or attribute name: readonly deviceTypes: Array<string>;
BundlePackInfo.d.ts
Added NA Class name: ModuleConfigInfo;
Method or attribute name: readonly deviceTypes: Array<string>;
BundlePackInfo.d.ts
Added NA Class name: PackageConfig;
Method or attribute name: readonly name: string;
BundlePackInfo.d.ts
Added NA Class name: ExtensionAbility;
Method or attribute name: readonly name: string;
BundlePackInfo.d.ts
Added NA Class name: ModuleAbilityInfo;
Method or attribute name: readonly name: string;
BundlePackInfo.d.ts
Added NA Class name: AbilityFormInfo;
Method or attribute name: readonly name: string;
BundlePackInfo.d.ts
Added NA Class name: Version;
Method or attribute name: readonly name: string;
BundlePackInfo.d.ts
Added NA Class name: PackageConfig;
Method or attribute name: readonly moduleType: string;
BundlePackInfo.d.ts
Added NA Class name: ModuleDistroInfo;
Method or attribute name: readonly moduleType: string;
BundlePackInfo.d.ts
Added NA Class name: PackageConfig;
Method or attribute name: readonly deliveryWithInstall: boolean;
BundlePackInfo.d.ts
Added NA Class name: ModuleDistroInfo;
Method or attribute name: readonly deliveryWithInstall: boolean;
BundlePackInfo.d.ts
Added NA Class name: PackageSummary;
Method or attribute name: readonly app: BundleConfigInfo;
BundlePackInfo.d.ts
Added NA Class name: PackageSummary;
Method or attribute name: readonly modules: Array<ModuleConfigInfo>;
BundlePackInfo.d.ts
Added NA Class name: BundleConfigInfo;
Method or attribute name: readonly bundleName: string;
BundlePackInfo.d.ts
Added NA Class name: BundleConfigInfo;
Method or attribute name: readonly version: Version;
BundlePackInfo.d.ts
Added NA Class name: ExtensionAbility;
Method or attribute name: readonly forms: Array<AbilityFormInfo>;
BundlePackInfo.d.ts
Added NA Class name: ModuleAbilityInfo;
Method or attribute name: readonly forms: Array<AbilityFormInfo>;
BundlePackInfo.d.ts
Added NA Class name: ModuleConfigInfo;
Method or attribute name: readonly mainAbility: string;
BundlePackInfo.d.ts
Added NA Class name: ModuleConfigInfo;
Method or attribute name: readonly apiVersion: ApiVersion;
BundlePackInfo.d.ts
Added NA Class name: ModuleConfigInfo;
Method or attribute name: readonly distro: ModuleDistroInfo;
BundlePackInfo.d.ts
Added NA Class name: ModuleConfigInfo;
Method or attribute name: readonly abilities: Array<ModuleAbilityInfo>;
BundlePackInfo.d.ts
Added NA Class name: ModuleConfigInfo;
Method or attribute name: readonly extensionAbilities: Array<ExtensionAbility>;
BundlePackInfo.d.ts
Added NA Class name: ModuleDistroInfo;
Method or attribute name: readonly installationFree: boolean;
BundlePackInfo.d.ts
Added NA Class name: ModuleDistroInfo;
Method or attribute name: readonly moduleName: string;
BundlePackInfo.d.ts
Added NA Class name: ModuleAbilityInfo;
Method or attribute name: readonly label: string;
BundlePackInfo.d.ts
Added NA Class name: ModuleAbilityInfo;
Method or attribute name: readonly exported: boolean;
BundlePackInfo.d.ts
Added NA Class name: AbilityFormInfo;
Method or attribute name: readonly type: string;
BundlePackInfo.d.ts
Added NA Class name: AbilityFormInfo;
Method or attribute name: readonly updateEnabled: boolean;
BundlePackInfo.d.ts
Added NA Class name: AbilityFormInfo;
Method or attribute name: readonly scheduledUpdateTime: string;
BundlePackInfo.d.ts
Added NA Class name: AbilityFormInfo;
Method or attribute name: readonly updateDuration: number;
BundlePackInfo.d.ts
Added NA Class name: AbilityFormInfo;
Method or attribute name: readonly supportDimensions: Array<string>;
BundlePackInfo.d.ts
Added NA Class name: AbilityFormInfo;
Method or attribute name: readonly defaultDimension: string;
BundlePackInfo.d.ts
Added NA Class name: Version;
Method or attribute name: readonly minCompatibleVersionCode: number;
BundlePackInfo.d.ts
Added NA Class name: Version;
Method or attribute name: readonly code: number;
BundlePackInfo.d.ts
Added NA Class name: ApiVersion;
Method or attribute name: readonly releaseType: string;
BundlePackInfo.d.ts
Added NA Class name: ApiVersion;
Method or attribute name: readonly compatible: number;
BundlePackInfo.d.ts
Added NA Class name: ApiVersion;
Method or attribute name: readonly target: number;
BundlePackInfo.d.ts
Added NA Class name: DispatchInfo;
Method or attribute name: readonly version: string;
DispatchInfo.d.ts
Added NA Class name: DispatchInfo;
Method or attribute name: readonly dispatchAPIVersion: string;
DispatchInfo.d.ts
Added NA Class name: ElementName;
Method or attribute name: deviceId?: string;
ElementName.d.ts
Added NA Class name: ElementName;
Method or attribute name: bundleName: string;
ElementName.d.ts
Added NA Class name: ElementName;
Method or attribute name: moduleName?: string;
ElementName.d.ts
Added NA Class name: ElementName;
Method or attribute name: abilityName: string;
ElementName.d.ts
Added NA Class name: ElementName;
Method or attribute name: uri?: string;
ElementName.d.ts
Added NA Class name: ElementName;
Method or attribute name: shortName?: string;
ElementName.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly bundleName: string;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly moduleName: string;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly name: string;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly labelId: number;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly descriptionId: number;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly iconId: number;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly exported: boolean;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly extensionAbilityType: bundleManager.ExtensionAbilityType;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly permissions: Array<string>;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly applicationInfo: ApplicationInfo;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly metadata: Array<Metadata>;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly enabled: boolean;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly readPermission: string;
ExtensionAbilityInfo.d.ts
Added NA Class name: ExtensionAbilityInfo;
Method or attribute name: readonly writePermission: string;
ExtensionAbilityInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly name: string;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly icon: string;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly iconId: number;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly label: string;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly labelId: number;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly description: string;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly descriptionId: number;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly mainElementName: string;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly abilitiesInfo: Array<AbilityInfo>;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly extensionAbilitiesInfo: Array<ExtensionAbilityInfo>;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly metadata: Array<Metadata>;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly deviceTypes: Array<string>;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly installationFree: boolean;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly hashValue: string;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly type: bundleManager.ModuleType;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly dependencies: Array<Dependency>;
HapModuleInfo.d.ts
Added NA Class name: HapModuleInfo;
Method or attribute name: readonly preloads: Array<PreloadItem>;
HapModuleInfo.d.ts
Added NA Class name: Dependency;
Method or attribute name: readonly moduleName: string;
HapModuleInfo.d.ts
Added NA Class name: PreloadItem;
Method or attribute name: readonly moduleName: string;
HapModuleInfo.d.ts
Added NA Class name: LauncherAbilityInfo;
Method or attribute name: readonly applicationInfo: ApplicationInfo;
LauncherAbilityInfo.d.ts
Added NA Class name: LauncherAbilityInfo;
Method or attribute name: readonly elementName : ElementName;
LauncherAbilityInfo.d.ts
Added NA Class name: LauncherAbilityInfo;
Method or attribute name: readonly labelId: number;
LauncherAbilityInfo.d.ts
Added NA Class name: LauncherAbilityInfo;
Method or attribute name: readonly iconId: number;
LauncherAbilityInfo.d.ts
Added NA Class name: LauncherAbilityInfo;
Method or attribute name: readonly userId: number;
LauncherAbilityInfo.d.ts
Added NA Class name: LauncherAbilityInfo;
Method or attribute name: readonly installTime : number;
LauncherAbilityInfo.d.ts
Added NA Class name: Metadata;
Method or attribute name: name: string;
Metadata.d.ts
Added NA Class name: Metadata;
Method or attribute name: value: string;
Metadata.d.ts
Added NA Class name: Metadata;
Method or attribute name: resource: string;
Metadata.d.ts
Added NA Class name: PermissionDef;
Method or attribute name: readonly permissionName: string;
PermissionDef.d.ts
Added NA Class name: PermissionDef;
Method or attribute name: readonly grantMode: number;
PermissionDef.d.ts
Added NA Class name: PermissionDef;
Method or attribute name: readonly labelId: number;
PermissionDef.d.ts
Added NA Class name: PermissionDef;
Method or attribute name: readonly descriptionId: number;
PermissionDef.d.ts
Added NA Class name: RemoteAbilityInfo;
Method or attribute name: readonly elementName: ElementName;
RemoteAbilityInfo.d.ts
Added NA Class name: RemoteAbilityInfo;
Method or attribute name: readonly label: string;
RemoteAbilityInfo.d.ts
Added NA Class name: RemoteAbilityInfo;
Method or attribute name: readonly icon: string;
RemoteAbilityInfo.d.ts
Added NA Class name: ShortcutInfo;
Method or attribute name: readonly id: string;
ShortcutInfo.d.ts
Added NA Class name: ShortcutInfo;
Method or attribute name: readonly bundleName: string;
ShortcutInfo.d.ts
Added NA Class name: ShortcutInfo;
Method or attribute name: readonly moduleName: string;
ShortcutInfo.d.ts
Added NA Class name: ShortcutInfo;
Method or attribute name: readonly hostAbility: string;
ShortcutInfo.d.ts
Added NA Class name: ShortcutInfo;
Method or attribute name: readonly icon: string;
ShortcutInfo.d.ts
Added NA Class name: ShortcutInfo;
Method or attribute name: readonly iconId: number;
ShortcutInfo.d.ts
Added NA Class name: ShortcutInfo;
Method or attribute name: readonly label: string;
ShortcutInfo.d.ts
Added NA Class name: ShortcutInfo;
Method or attribute name: readonly labelId: number;
ShortcutInfo.d.ts
Added NA Class name: ShortcutInfo;
Method or attribute name: readonly wants: Array<ShortcutWant>;
ShortcutInfo.d.ts
Added NA Class name: ShortcutWant;
Method or attribute name: readonly targetBundle: string;
ShortcutInfo.d.ts
Added NA Class name: ShortcutWant;
Method or attribute name: readonly targetModule: string;
ShortcutInfo.d.ts
Added NA Class name: ShortcutWant;
Method or attribute name: readonly targetAbility: string;
ShortcutInfo.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: declare bundle
Old version:
Class name: bundle;
Method or attribute name: declare bundle
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getBundleInfo(bundleName: string, bundleFlags: number, options: BundleOptions, callback: AsyncCallback<BundleInfo>): void;
Old version:
Class name: bundle;
Method or attribute name: function getBundleInfo(bundleName: string, bundleFlags: number, options: BundleOptions, callback: AsyncCallback<BundleInfo>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getBundleInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getBundleInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback<BundleInfo>): void;
Old version:
Class name: bundle;
Method or attribute name: function getBundleInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback<BundleInfo>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getBundleInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getBundleInfo(bundleName: string, bundleFlags: number, options?: BundleOptions): Promise<BundleInfo>;
Old version:
Class name: bundle;
Method or attribute name: function getBundleInfo(bundleName: string, bundleFlags: number, options?: BundleOptions): Promise<BundleInfo>;
New version: 9
Substitute API: ohos.bundle.bundleManager#getBundleInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getBundleInstaller(callback: AsyncCallback<BundleInstaller>): void;
Old version:
Class name: bundle;
Method or attribute name: function getBundleInstaller(callback: AsyncCallback<BundleInstaller>): void;
New version: 9
Substitute API: ohos.bundle.installer#getBundleInstaller
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getBundleInstaller(): Promise<BundleInstaller>;
Old version:
Class name: bundle;
Method or attribute name: function getBundleInstaller(): Promise<BundleInstaller>;
New version: 9
Substitute API: ohos.bundle.installer#getBundleInstaller
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAbilityInfo(bundleName: string, abilityName: string, callback: AsyncCallback<AbilityInfo>): void;
Old version:
Class name: bundle;
Method or attribute name: function getAbilityInfo(bundleName: string, abilityName: string, callback: AsyncCallback<AbilityInfo>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#queryAbilityInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAbilityInfo(bundleName: string, abilityName: string): Promise<AbilityInfo>;
Old version:
Class name: bundle;
Method or attribute name: function getAbilityInfo(bundleName: string, abilityName: string): Promise<AbilityInfo>;
New version: 9
Substitute API: ohos.bundle.bundleManager#queryAbilityInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getApplicationInfo(bundleName: string, bundleFlags: number, userId: number, callback: AsyncCallback<ApplicationInfo>) : void;
Old version:
Class name: bundle;
Method or attribute name: function getApplicationInfo(bundleName: string, bundleFlags: number, userId: number, callback: AsyncCallback<ApplicationInfo>) : void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getApplicationInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getApplicationInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback<ApplicationInfo>) : void;
Old version:
Class name: bundle;
Method or attribute name: function getApplicationInfo(bundleName: string, bundleFlags: number, callback: AsyncCallback<ApplicationInfo>) : void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getApplicationInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getApplicationInfo(bundleName: string, bundleFlags: number, userId?: number) : Promise<ApplicationInfo>;
Old version:
Class name: bundle;
Method or attribute name: function getApplicationInfo(bundleName: string, bundleFlags: number, userId?: number) : Promise<ApplicationInfo>;
New version: 9
Substitute API: ohos.bundle.bundleManager#getApplicationInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function queryAbilityByWant(want: Want, bundleFlags: number, userId: number, callback: AsyncCallback<Array<AbilityInfo>>): void;
Old version:
Class name: bundle;
Method or attribute name: function queryAbilityByWant(want: Want, bundleFlags: number, userId: number, callback: AsyncCallback<Array<AbilityInfo>>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#queryAbilityInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function queryAbilityByWant(want: Want, bundleFlags: number, callback: AsyncCallback<Array<AbilityInfo>>): void;
Old version:
Class name: bundle;
Method or attribute name: function queryAbilityByWant(want: Want, bundleFlags: number, callback: AsyncCallback<Array<AbilityInfo>>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#queryAbilityInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function queryAbilityByWant(want: Want, bundleFlags: number, userId?:number): Promise<Array<AbilityInfo>>;
Old version:
Class name: bundle;
Method or attribute name: function queryAbilityByWant(want: Want, bundleFlags: number, userId?:number): Promise<Array<AbilityInfo>>;
New version: 9
Substitute API: ohos.bundle.bundleManager#queryAbilityInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAllBundleInfo(bundleFlag: BundleFlag, userId: number, callback: AsyncCallback<Array<BundleInfo>>) : void;
Old version:
Class name: bundle;
Method or attribute name: function getAllBundleInfo(bundleFlag: BundleFlag, userId: number, callback: AsyncCallback<Array<BundleInfo>>) : void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getAllBundleInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAllBundleInfo(bundleFlag: BundleFlag, callback: AsyncCallback<Array<BundleInfo>>) : void;
Old version:
Class name: bundle;
Method or attribute name: function getAllBundleInfo(bundleFlag: BundleFlag, callback: AsyncCallback<Array<BundleInfo>>) : void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getAllBundleInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAllBundleInfo(bundleFlag: BundleFlag, userId?: number) : Promise<Array<BundleInfo>>;
Old version:
Class name: bundle;
Method or attribute name: function getAllBundleInfo(bundleFlag: BundleFlag, userId?: number) : Promise<Array<BundleInfo>>;
New version: 9
Substitute API: ohos.bundle.bundleManager#getAllBundleInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAllApplicationInfo(bundleFlags: number, userId: number, callback: AsyncCallback<Array<ApplicationInfo>>) : void;
Old version:
Class name: bundle;
Method or attribute name: function getAllApplicationInfo(bundleFlags: number, userId: number, callback: AsyncCallback<Array<ApplicationInfo>>) : void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getAllApplicationInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAllApplicationInfo(bundleFlags: number, callback: AsyncCallback<Array<ApplicationInfo>>) : void;
Old version:
Class name: bundle;
Method or attribute name: function getAllApplicationInfo(bundleFlags: number, callback: AsyncCallback<Array<ApplicationInfo>>) : void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getAllApplicationInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAllApplicationInfo(bundleFlags: number, userId?: number) : Promise<Array<ApplicationInfo>>;
Old version:
Class name: bundle;
Method or attribute name: function getAllApplicationInfo(bundleFlags: number, userId?: number) : Promise<Array<ApplicationInfo>>;
New version: 9
Substitute API: ohos.bundle.bundleManager#getAllApplicationInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getNameForUid(uid: number, callback: AsyncCallback<string>) : void
Old version:
Class name: bundle;
Method or attribute name: function getNameForUid(uid: number, callback: AsyncCallback<string>) : void
New version: 9
Substitute API: ohos.bundle.bundleManager#getNameForUid
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getNameForUid(uid: number) : Promise<string>;
Old version:
Class name: bundle;
Method or attribute name: function getNameForUid(uid: number) : Promise<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager#getNameForUid
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number, callback: AsyncCallback<BundleInfo>) : void
Old version:
Class name: bundle;
Method or attribute name: function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number, callback: AsyncCallback<BundleInfo>) : void
New version: 9
Substitute API: ohos.bundle.bundleManager#getBundleArchiveInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number) : Promise<BundleInfo>;
Old version:
Class name: bundle;
Method or attribute name: function getBundleArchiveInfo(hapFilePath: string, bundleFlags: number) : Promise<BundleInfo>;
New version: 9
Substitute API: ohos.bundle.bundleManager#getBundleArchiveInfo
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getLaunchWantForBundle(bundleName: string, callback: AsyncCallback<Want>): void;
Old version:
Class name: bundle;
Method or attribute name: function getLaunchWantForBundle(bundleName: string, callback: AsyncCallback<Want>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getLaunchWantForBundle
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getLaunchWantForBundle(bundleName: string): Promise<Want>;
Old version:
Class name: bundle;
Method or attribute name: function getLaunchWantForBundle(bundleName: string): Promise<Want>;
New version: 9
Substitute API: ohos.bundle.bundleManager#getLaunchWantForBundle
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function cleanBundleCacheFiles(bundleName: string, callback: AsyncCallback<void>): void;
Old version:
Class name: bundle;
Method or attribute name: function cleanBundleCacheFiles(bundleName: string, callback: AsyncCallback<void>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#cleanBundleCacheFiles
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function cleanBundleCacheFiles(bundleName: string): Promise<void>;
Old version:
Class name: bundle;
Method or attribute name: function cleanBundleCacheFiles(bundleName: string): Promise<void>;
New version: 9
Substitute API: ohos.bundle.bundleManager#cleanBundleCacheFiles
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function setApplicationEnabled(bundleName: string, isEnable: boolean, callback: AsyncCallback<void>): void;
Old version:
Class name: bundle;
Method or attribute name: function setApplicationEnabled(bundleName: string, isEnable: boolean, callback: AsyncCallback<void>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#setApplicationEnabled
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function setApplicationEnabled(bundleName: string, isEnable: boolean): Promise<void>;
Old version:
Class name: bundle;
Method or attribute name: function setApplicationEnabled(bundleName: string, isEnable: boolean): Promise<void>;
New version: 9
Substitute API: ohos.bundle.bundleManager#setApplicationEnabled
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function setAbilityEnabled(info: AbilityInfo, isEnable: boolean, callback: AsyncCallback<void>): void;
Old version:
Class name: bundle;
Method or attribute name: function setAbilityEnabled(info: AbilityInfo, isEnable: boolean, callback: AsyncCallback<void>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#setAbilityEnabled
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function setAbilityEnabled(info: AbilityInfo, isEnable: boolean): Promise<void>;
Old version:
Class name: bundle;
Method or attribute name: function setAbilityEnabled(info: AbilityInfo, isEnable: boolean): Promise<void>;
New version: 9
Substitute API: ohos.bundle.bundleManager#setAbilityEnabled
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getPermissionDef(permissionName: string, callback: AsyncCallback<PermissionDef>): void;
Old version:
Class name: bundle;
Method or attribute name: function getPermissionDef(permissionName: string, callback: AsyncCallback<PermissionDef>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getPermissionDef
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getPermissionDef(permissionName: string): Promise<PermissionDef>;
Old version:
Class name: bundle;
Method or attribute name: function getPermissionDef(permissionName: string): Promise<PermissionDef>;
New version: 9
Substitute API: ohos.bundle.bundleManager#getPermissionDef
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAbilityLabel(bundleName: string, abilityName: string, callback: AsyncCallback<string>): void;
Old version:
Class name: bundle;
Method or attribute name: function getAbilityLabel(bundleName: string, abilityName: string, callback: AsyncCallback<string>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#getAbilityLabel
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAbilityLabel(bundleName: string, abilityName: string): Promise<string>;
Old version:
Class name: bundle;
Method or attribute name: function getAbilityLabel(bundleName: string, abilityName: string): Promise<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager#getAbilityLabel
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAbilityIcon(bundleName: string, abilityName: string, callback: AsyncCallback<image.PixelMap>): void;
Old version:
Class name: bundle;
Method or attribute name: function getAbilityIcon(bundleName: string, abilityName: string, callback: AsyncCallback<image.PixelMap>): void;
New version: 9
Substitute API: ohos.resourceManager#getMediaContent
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function getAbilityIcon(bundleName: string, abilityName: string): Promise<image.PixelMap>;
Old version:
Class name: bundle;
Method or attribute name: function getAbilityIcon(bundleName: string, abilityName: string): Promise<image.PixelMap>;
New version: 9
Substitute API: ohos.resourceManager#getMediaContent
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function isAbilityEnabled(info: AbilityInfo, callback: AsyncCallback<boolean>): void;
Old version:
Class name: bundle;
Method or attribute name: function isAbilityEnabled(info: AbilityInfo, callback: AsyncCallback<boolean>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#isAbilityEnabled
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function isAbilityEnabled(info: AbilityInfo): Promise<boolean>;
Old version:
Class name: bundle;
Method or attribute name: function isAbilityEnabled(info: AbilityInfo): Promise<boolean>;
New version: 9
Substitute API: ohos.bundle.bundleManager#isAbilityEnabled
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function isApplicationEnabled(bundleName: string, callback: AsyncCallback<boolean>): void;
Old version:
Class name: bundle;
Method or attribute name: function isApplicationEnabled(bundleName: string, callback: AsyncCallback<boolean>): void;
New version: 9
Substitute API: ohos.bundle.bundleManager#isApplicationEnabled
@ohos.bundle.d.ts
Deprecated version changed Class name: bundle;
Method or attribute name: function isApplicationEnabled(bundleName: string): Promise<boolean>;
Old version:
Class name: bundle;
Method or attribute name: function isApplicationEnabled(bundleName: string): Promise<boolean>;
New version: 9
Substitute API: ohos.bundle.bundleManager#isApplicationEnabled
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: enum BundleFlag
Old version:
Class name: BundleFlag;
Method or attribute name: enum BundleFlag
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_DEFAULT = 0x00000000
Old version:
Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_DEFAULT = 0x00000000
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_WITH_ABILITIES = 0x00000001
Old version:
Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_WITH_ABILITIES = 0x00000001
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_PERMISSION = 0x00000002
Old version:
Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_PERMISSION = 0x00000002
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_APPLICATION = 0x00000004
Old version:
Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_APPLICATION = 0x00000004
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_APPLICATION_INFO_WITH_PERMISSION = 0x00000008
Old version:
Class name: BundleFlag;
Method or attribute name: GET_APPLICATION_INFO_WITH_PERMISSION = 0x00000008
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_WITH_REQUESTED_PERMISSION = 0x00000010
Old version:
Class name: BundleFlag;
Method or attribute name: GET_BUNDLE_WITH_REQUESTED_PERMISSION = 0x00000010
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_ALL_APPLICATION_INFO = 0xFFFF0000
Old version:
Class name: BundleFlag;
Method or attribute name: GET_ALL_APPLICATION_INFO = 0xFFFF0000
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_METADATA = 0x00000020
Old version:
Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_METADATA = 0x00000020
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_APPLICATION_INFO_WITH_METADATA = 0x00000040
Old version:
Class name: BundleFlag;
Method or attribute name: GET_APPLICATION_INFO_WITH_METADATA = 0x00000040
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_SYSTEMAPP_ONLY = 0x00000080
Old version:
Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_SYSTEMAPP_ONLY = 0x00000080
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_DISABLE = 0x00000100
Old version:
Class name: BundleFlag;
Method or attribute name: GET_ABILITY_INFO_WITH_DISABLE = 0x00000100
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleFlag;
Method or attribute name: GET_APPLICATION_INFO_WITH_DISABLE = 0x00000200
Old version:
Class name: BundleFlag;
Method or attribute name: GET_APPLICATION_INFO_WITH_DISABLE = 0x00000200
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleFlag,
@ohos.bundle.d.ts
Deprecated version changed Class name: ColorMode;
Method or attribute name: export enum ColorMode
Old version:
Class name: ColorMode;
Method or attribute name: export enum ColorMode
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: ColorMode;
Method or attribute name: AUTO_MODE = -1
Old version:
Class name: ColorMode;
Method or attribute name: AUTO_MODE = -1
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: ColorMode;
Method or attribute name: DARK_MODE = 0
Old version:
Class name: ColorMode;
Method or attribute name: DARK_MODE = 0
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: ColorMode;
Method or attribute name: LIGHT_MODE = 1
Old version:
Class name: ColorMode;
Method or attribute name: LIGHT_MODE = 1
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: GrantStatus;
Method or attribute name: export enum GrantStatus
Old version:
Class name: GrantStatus;
Method or attribute name: export enum GrantStatus
New version: 9
Substitute API: ohos.bundle.bundleManager.PermissionGrantState
@ohos.bundle.d.ts
Deprecated version changed Class name: GrantStatus;
Method or attribute name: PERMISSION_DENIED = -1
Old version:
Class name: GrantStatus;
Method or attribute name: PERMISSION_DENIED = -1
New version: 9
Substitute API: ohos.bundle.bundleManager.PermissionGrantState
@ohos.bundle.d.ts
Deprecated version changed Class name: GrantStatus;
Method or attribute name: PERMISSION_GRANTED = 0
Old version:
Class name: GrantStatus;
Method or attribute name: PERMISSION_GRANTED = 0
New version: 9
Substitute API: ohos.bundle.bundleManager.PermissionGrantState
@ohos.bundle.d.ts
Deprecated version changed Class name: AbilityType;
Method or attribute name: export enum AbilityType
Old version:
Class name: AbilityType;
Method or attribute name: export enum AbilityType
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityType
@ohos.bundle.d.ts
Deprecated version changed Class name: AbilityType;
Method or attribute name: UNKNOWN
Old version:
Class name: AbilityType;
Method or attribute name: UNKNOWN
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityType
@ohos.bundle.d.ts
Deprecated version changed Class name: AbilityType;
Method or attribute name: PAGE
Old version:
Class name: AbilityType;
Method or attribute name: PAGE
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityType
@ohos.bundle.d.ts
Deprecated version changed Class name: AbilityType;
Method or attribute name: SERVICE
Old version:
Class name: AbilityType;
Method or attribute name: SERVICE
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityType
@ohos.bundle.d.ts
Deprecated version changed Class name: AbilityType;
Method or attribute name: DATA
Old version:
Class name: AbilityType;
Method or attribute name: DATA
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityType
@ohos.bundle.d.ts
Deprecated version changed Class name: AbilitySubType;
Method or attribute name: export enum AbilitySubType
Old version:
Class name: AbilitySubType;
Method or attribute name: export enum AbilitySubType
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: AbilitySubType;
Method or attribute name: UNSPECIFIED = 0
Old version:
Class name: AbilitySubType;
Method or attribute name: UNSPECIFIED = 0
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: AbilitySubType;
Method or attribute name: CA = 1
Old version:
Class name: AbilitySubType;
Method or attribute name: CA = 1
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: DisplayOrientation;
Method or attribute name: export enum DisplayOrientation
Old version:
Class name: DisplayOrientation;
Method or attribute name: export enum DisplayOrientation
New version: 9
Substitute API: ohos.bundle.bundleManager.DisplayOrientation
@ohos.bundle.d.ts
Deprecated version changed Class name: DisplayOrientation;
Method or attribute name: UNSPECIFIED
Old version:
Class name: DisplayOrientation;
Method or attribute name: UNSPECIFIED
New version: 9
Substitute API: ohos.bundle.bundleManager.DisplayOrientation
@ohos.bundle.d.ts
Deprecated version changed Class name: DisplayOrientation;
Method or attribute name: LANDSCAPE
Old version:
Class name: DisplayOrientation;
Method or attribute name: LANDSCAPE
New version: 9
Substitute API: ohos.bundle.bundleManager.DisplayOrientation
@ohos.bundle.d.ts
Deprecated version changed Class name: DisplayOrientation;
Method or attribute name: PORTRAIT
Old version:
Class name: DisplayOrientation;
Method or attribute name: PORTRAIT
New version: 9
Substitute API: ohos.bundle.bundleManager.DisplayOrientation
@ohos.bundle.d.ts
Deprecated version changed Class name: DisplayOrientation;
Method or attribute name: FOLLOW_RECENT
Old version:
Class name: DisplayOrientation;
Method or attribute name: FOLLOW_RECENT
New version: 9
Substitute API: ohos.bundle.bundleManager.DisplayOrientation
@ohos.bundle.d.ts
Deprecated version changed Class name: LaunchMode;
Method or attribute name: export enum LaunchMode
Old version:
Class name: LaunchMode;
Method or attribute name: export enum LaunchMode
New version: 9
Substitute API: ohos.bundle.bundleManager.LaunchType
@ohos.bundle.d.ts
Deprecated version changed Class name: LaunchMode;
Method or attribute name: SINGLETON = 0
Old version:
Class name: LaunchMode;
Method or attribute name: SINGLETON = 0
New version: 9
Substitute API: ohos.bundle.bundleManager.LaunchType
@ohos.bundle.d.ts
Deprecated version changed Class name: LaunchMode;
Method or attribute name: STANDARD = 1
Old version:
Class name: LaunchMode;
Method or attribute name: STANDARD = 1
New version: 9
Substitute API: ohos.bundle.bundleManager.LaunchType
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleOptions;
Method or attribute name: export interface BundleOptions
Old version:
Class name: BundleOptions;
Method or attribute name: export interface BundleOptions
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: BundleOptions;
Method or attribute name: userId?: number;
Old version:
Class name: BundleOptions;
Method or attribute name: userId?: number;
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: export enum InstallErrorCode
Old version:
Class name: InstallErrorCode;
Method or attribute name: export enum InstallErrorCode
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: SUCCESS = 0
Old version:
Class name: InstallErrorCode;
Method or attribute name: SUCCESS = 0
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE = 1
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE = 1
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_ABORTED = 2
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_ABORTED = 2
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_INVALID = 3
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_INVALID = 3
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_CONFLICT = 4
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_CONFLICT = 4
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_STORAGE = 5
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_STORAGE = 5
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_INCOMPATIBLE = 6
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_INCOMPATIBLE = 6
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_FAILURE = 7
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_FAILURE = 7
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_FAILURE_BLOCKED = 8
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_FAILURE_BLOCKED = 8
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_FAILURE_ABORTED = 9
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_FAILURE_ABORTED = 9
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_FAILURE_CONFLICT = 10
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_FAILURE_CONFLICT = 10
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_DOWNLOAD_TIMEOUT = 0x0B
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_DOWNLOAD_TIMEOUT = 0x0B
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_DOWNLOAD_FAILED = 0x0C
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_FAILURE_DOWNLOAD_FAILED = 0x0C
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_RECOVER_FAILURE_INVALID = 0x0D
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_RECOVER_FAILURE_INVALID = 0x0D
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_ABILITY_NOT_FOUND = 0x40
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_ABILITY_NOT_FOUND = 0x40
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_BMS_SERVICE_ERROR = 0x41
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_BMS_SERVICE_ERROR = 0x41
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_FAILED_NO_SPACE_LEFT = 0x42
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_FAILED_NO_SPACE_LEFT = 0x42
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_GRANT_REQUEST_PERMISSIONS_FAILED = 0x43
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_GRANT_REQUEST_PERMISSIONS_FAILED = 0x43
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_PERMISSION_DENIED = 0x44
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_INSTALL_PERMISSION_DENIED = 0x44
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_PERMISSION_DENIED = 0x45
Old version:
Class name: InstallErrorCode;
Method or attribute name: STATUS_UNINSTALL_PERMISSION_DENIED = 0x45
New version: 9
Substitute API: ohos.bundle.bundleManager
@ohos.bundle.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: declare innerBundleManager
Old version:
Class name: innerBundleManager;
Method or attribute name: declare innerBundleManager
New version: 9
Substitute API: ohos.bundle.launcherBundleManager
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function getLauncherAbilityInfos(bundleName: string, userId: number, callback: AsyncCallback<Array<LauncherAbilityInfo>>) : void;
Old version:
Class name: innerBundleManager;
Method or attribute name: function getLauncherAbilityInfos(bundleName: string, userId: number, callback: AsyncCallback<Array<LauncherAbilityInfo>>) : void;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager#getLauncherAbilityInfo
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function getLauncherAbilityInfos(bundleName: string, userId: number) : Promise<Array<LauncherAbilityInfo>>;
Old version:
Class name: innerBundleManager;
Method or attribute name: function getLauncherAbilityInfos(bundleName: string, userId: number) : Promise<Array<LauncherAbilityInfo>>;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager#getLauncherAbilityInfo
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function on(type:"BundleStatusChange", bundleStatusCallback : BundleStatusCallback, callback: AsyncCallback<string>) : void;
Old version:
Class name: innerBundleManager;
Method or attribute name: function on(type:"BundleStatusChange", bundleStatusCallback : BundleStatusCallback, callback: AsyncCallback<string>) : void;
New version: 9
Substitute API: ohos.bundle.bundleMonitor#on
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function on(type:"BundleStatusChange", bundleStatusCallback : BundleStatusCallback): Promise<string>;
Old version:
Class name: innerBundleManager;
Method or attribute name: function on(type:"BundleStatusChange", bundleStatusCallback : BundleStatusCallback): Promise<string>;
New version: 9
Substitute API: ohos.bundle.bundleMonitor#on
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function off(type:"BundleStatusChange", callback: AsyncCallback<string>) : void;
Old version:
Class name: innerBundleManager;
Method or attribute name: function off(type:"BundleStatusChange", callback: AsyncCallback<string>) : void;
New version: 9
Substitute API: ohos.bundle.bundleMonitor#off
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function off(type:"BundleStatusChange"): Promise<string>;
Old version:
Class name: innerBundleManager;
Method or attribute name: function off(type:"BundleStatusChange"): Promise<string>;
New version: 9
Substitute API: ohos.bundle.bundleMonitor#off
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function getAllLauncherAbilityInfos(userId: number, callback: AsyncCallback<Array<LauncherAbilityInfo>>) : void;
Old version:
Class name: innerBundleManager;
Method or attribute name: function getAllLauncherAbilityInfos(userId: number, callback: AsyncCallback<Array<LauncherAbilityInfo>>) : void;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager#getAllLauncherAbilityInfos
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function getAllLauncherAbilityInfos(userId: number) : Promise<Array<LauncherAbilityInfo>>;
Old version:
Class name: innerBundleManager;
Method or attribute name: function getAllLauncherAbilityInfos(userId: number) : Promise<Array<LauncherAbilityInfo>>;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager#getAllLauncherAbilityInfos
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function getShortcutInfos(bundleName :string, callback: AsyncCallback<Array<ShortcutInfo>>) : void;
Old version:
Class name: innerBundleManager;
Method or attribute name: function getShortcutInfos(bundleName :string, callback: AsyncCallback<Array<ShortcutInfo>>) : void;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager#getShortcutInfo
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: innerBundleManager;
Method or attribute name: function getShortcutInfos(bundleName : string) : Promise<Array<ShortcutInfo>>;
Old version:
Class name: innerBundleManager;
Method or attribute name: function getShortcutInfos(bundleName : string) : Promise<Array<ShortcutInfo>>;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager#getShortcutInfo
@ohos.bundle.innerBundleManager.d.ts
Deprecated version changed Class name: distributedBundle;
Method or attribute name: declare distributedBundle
Old version:
Class name: distributedBundle;
Method or attribute name: declare distributedBundle
New version: 9
Substitute API: ohos.bundle.distributedBundleManager
@ohos.distributedBundle.d.ts
Deprecated version changed Class name: distributedBundle;
Method or attribute name: function getRemoteAbilityInfo(elementName: ElementName, callback: AsyncCallback<RemoteAbilityInfo>): void;
Old version:
Class name: distributedBundle;
Method or attribute name: function getRemoteAbilityInfo(elementName: ElementName, callback: AsyncCallback<RemoteAbilityInfo>): void;
New version: 9
Substitute API: ohos.bundle.distributedBundleManager#getRemoteAbilityInfo
@ohos.distributedBundle.d.ts
Deprecated version changed Class name: distributedBundle;
Method or attribute name: function getRemoteAbilityInfo(elementName: ElementName): Promise<RemoteAbilityInfo>;
Old version:
Class name: distributedBundle;
Method or attribute name: function getRemoteAbilityInfo(elementName: ElementName): Promise<RemoteAbilityInfo>;
New version: 9
Substitute API: ohos.bundle.distributedBundleManager#getRemoteAbilityInfo
@ohos.distributedBundle.d.ts
Deprecated version changed Class name: distributedBundle;
Method or attribute name: function getRemoteAbilityInfos(elementNames: Array<ElementName>, callback: AsyncCallback<Array<RemoteAbilityInfo>>): void;
Old version:
Class name: distributedBundle;
Method or attribute name: function getRemoteAbilityInfos(elementNames: Array<ElementName>, callback: AsyncCallback<Array<RemoteAbilityInfo>>): void;
New version: 9
Substitute API: ohos.bundle.distributedBundleManager#getRemoteAbilityInfo
@ohos.distributedBundle.d.ts
Deprecated version changed Class name: distributedBundle;
Method or attribute name: function getRemoteAbilityInfos(elementNames: Array<ElementName>): Promise<Array<RemoteAbilityInfo>>;
Old version:
Class name: distributedBundle;
Method or attribute name: function getRemoteAbilityInfos(elementNames: Array<ElementName>): Promise<Array<RemoteAbilityInfo>>;
New version: 9
Substitute API: ohos.bundle.distributedBundleManager#getRemoteAbilityInfo
@ohos.distributedBundle.d.ts
Deprecated version changed Class name: zlib;
Method or attribute name: function zipFile(inFile:string, outFile:string, options: Options): Promise<void>;
Old version:
Class name: zlib;
Method or attribute name: function zipFile(inFile:string, outFile:string, options: Options): Promise<void>;
New version: 9
Substitute API: ohos.zlib#compressFile
@ohos.zlib.d.ts
Deprecated version changed Class name: zlib;
Method or attribute name: function unzipFile(inFile:string, outFile:string, options: Options): Promise<void>;
Old version:
Class name: zlib;
Method or attribute name: function unzipFile(inFile:string, outFile:string, options: Options): Promise<void>;
New version: 9
Substitute API: ohos.zlib#decompressFile
@ohos.zlib.d.ts
Deprecated version changed Class name: ErrorCode;
Method or attribute name: export enum ErrorCode
Old version:
Class name: ErrorCode;
Method or attribute name: export enum ErrorCode
New version: 9
Substitute API:
@ohos.zlib.d.ts
Deprecated version changed Class name: ErrorCode;
Method or attribute name: ERROR_CODE_OK = 0
Old version:
Class name: ErrorCode;
Method or attribute name: ERROR_CODE_OK = 0
New version: 9
Substitute API:
@ohos.zlib.d.ts
Deprecated version changed Class name: ErrorCode;
Method or attribute name: ERROR_CODE_ERRNO = -1
Old version:
Class name: ErrorCode;
Method or attribute name: ERROR_CODE_ERRNO = -1
New version: 9
Substitute API:
@ohos.zlib.d.ts
Deprecated version changed Class name: CheckPackageHasInstalledResponse;
Method or attribute name: export interface CheckPackageHasInstalledResponse
Old version:
Class name: CheckPackageHasInstalledResponse;
Method or attribute name: export interface CheckPackageHasInstalledResponse
New version: 9
Substitute API:
@system.package.d.ts
Deprecated version changed Class name: CheckPackageHasInstalledResponse;
Method or attribute name: result: boolean;
Old version:
Class name: CheckPackageHasInstalledResponse;
Method or attribute name: result: boolean;
New version: 9
Substitute API:
@system.package.d.ts
Deprecated version changed Class name: CheckPackageHasInstalledOptions;
Method or attribute name: export interface CheckPackageHasInstalledOptions
Old version:
Class name: CheckPackageHasInstalledOptions;
Method or attribute name: export interface CheckPackageHasInstalledOptions
New version: 9
Substitute API:
@system.package.d.ts
Deprecated version changed Class name: CheckPackageHasInstalledOptions;
Method or attribute name: bundleName: string;
Old version:
Class name: CheckPackageHasInstalledOptions;
Method or attribute name: bundleName: string;
New version: 9
Substitute API:
@system.package.d.ts
Deprecated version changed Class name: CheckPackageHasInstalledOptions;
Method or attribute name: success?: (data: CheckPackageHasInstalledResponse) => void;
Old version:
Class name: CheckPackageHasInstalledOptions;
Method or attribute name: success?: (data: CheckPackageHasInstalledResponse) => void;
New version: 9
Substitute API:
@system.package.d.ts
Deprecated version changed Class name: CheckPackageHasInstalledOptions;
Method or attribute name: fail?: (data: any, code: number) => void;
Old version:
Class name: CheckPackageHasInstalledOptions;
Method or attribute name: fail?: (data: any, code: number) => void;
New version: 9
Substitute API:
@system.package.d.ts
Deprecated version changed Class name: CheckPackageHasInstalledOptions;
Method or attribute name: complete?: () => void;
Old version:
Class name: CheckPackageHasInstalledOptions;
Method or attribute name: complete?: () => void;
New version: 9
Substitute API:
@system.package.d.ts
Deprecated version changed Class name: Package;
Method or attribute name: export default class Package
Old version:
Class name: Package;
Method or attribute name: export default class Package
New version: 9
Substitute API:
@system.package.d.ts
Deprecated version changed Class name: Package;
Method or attribute name: static hasInstalled(options: CheckPackageHasInstalledOptions): void;
Old version:
Class name: Package;
Method or attribute name: static hasInstalled(options: CheckPackageHasInstalledOptions): void;
New version: 9
Substitute API:
@system.package.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: export interface AbilityInfo
Old version:
Class name: AbilityInfo;
Method or attribute name: export interface AbilityInfo
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly bundleName: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly bundleName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly name: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly name: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly label: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly label: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly description: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly description: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly icon: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly icon: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly labelId: number;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly labelId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly descriptionId: number;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly descriptionId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly iconId: number;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly iconId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly moduleName: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly moduleName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly process: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly process: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly targetAbility: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly targetAbility: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly backgroundModes: number;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly backgroundModes: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly isVisible: boolean;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly isVisible: boolean;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly formEnabled: boolean;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly formEnabled: boolean;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly type: bundle.AbilityType;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly type: bundle.AbilityType;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly subType: bundle.AbilitySubType;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly subType: bundle.AbilitySubType;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly orientation: bundle.DisplayOrientation;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly orientation: bundle.DisplayOrientation;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly launchMode: bundle.LaunchMode;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly launchMode: bundle.LaunchMode;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly permissions: Array<string>;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly permissions: Array<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly deviceTypes: Array<string>;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly deviceTypes: Array<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly deviceCapabilities: Array<string>;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly deviceCapabilities: Array<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly readPermission: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly readPermission: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly writePermission: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly writePermission: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly applicationInfo: ApplicationInfo;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly applicationInfo: ApplicationInfo;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly uri: string;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly uri: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly metaData: Array<CustomizeData>;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly metaData: Array<CustomizeData>;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: AbilityInfo;
Method or attribute name: readonly enabled: boolean;
Old version:
Class name: AbilityInfo;
Method or attribute name: readonly enabled: boolean;
New version: 9
Substitute API: ohos.bundle.bundleManager.AbilityInfo
abilityInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: export interface ApplicationInfo
Old version:
Class name: ApplicationInfo;
Method or attribute name: export interface ApplicationInfo
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly name: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly name: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly description: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly description: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly descriptionId: number;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly descriptionId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly systemApp: boolean;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly systemApp: boolean;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly enabled: boolean;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly enabled: boolean;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly label: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly label: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly labelId: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly labelId: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo.labelIndex
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly icon: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly icon: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly iconId: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly iconId: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo.iconIndex
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly process: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly process: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly supportedModes: number;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly supportedModes: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly moduleSourceDirs: Array<string>;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly moduleSourceDirs: Array<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly permissions: Array<string>;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly permissions: Array<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly moduleInfos: Array<ModuleInfo>;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly moduleInfos: Array<ModuleInfo>;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly entryDir: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly entryDir: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly codePath: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly codePath: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly metaData: Map<string, Array<CustomizeData>>;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly metaData: Map<string, Array<CustomizeData>>;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly removable: boolean;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly removable: boolean;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly accessTokenId: number;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly accessTokenId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly uid: number;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly uid: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: ApplicationInfo;
Method or attribute name: readonly entityType: string;
Old version:
Class name: ApplicationInfo;
Method or attribute name: readonly entityType: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ApplicationInfo
applicationInfo.d.ts
Deprecated version changed Class name: UsedScene;
Method or attribute name: export interface UsedScene
Old version:
Class name: UsedScene;
Method or attribute name: export interface UsedScene
New version: 9
Substitute API: ohos.bundle.bundleManager.UsedScene
bundleInfo.d.ts
Deprecated version changed Class name: UsedScene;
Method or attribute name: abilities: Array<string>;
Old version:
Class name: UsedScene;
Method or attribute name: abilities: Array<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager.UsedScene
bundleInfo.d.ts
Deprecated version changed Class name: UsedScene;
Method or attribute name: when: string;
Old version:
Class name: UsedScene;
Method or attribute name: when: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.UsedScene
bundleInfo.d.ts
Deprecated version changed Class name: ReqPermissionDetail;
Method or attribute name: export interface ReqPermissionDetail
Old version:
Class name: ReqPermissionDetail;
Method or attribute name: export interface ReqPermissionDetail
New version: 9
Substitute API: ohos.bundle.bundleManager.ReqPermissionDetail
bundleInfo.d.ts
Deprecated version changed Class name: ReqPermissionDetail;
Method or attribute name: name: string;
Old version:
Class name: ReqPermissionDetail;
Method or attribute name: name: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ReqPermissionDetail
bundleInfo.d.ts
Deprecated version changed Class name: ReqPermissionDetail;
Method or attribute name: reason: string;
Old version:
Class name: ReqPermissionDetail;
Method or attribute name: reason: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ReqPermissionDetail
bundleInfo.d.ts
Deprecated version changed Class name: ReqPermissionDetail;
Method or attribute name: usedScene: UsedScene;
Old version:
Class name: ReqPermissionDetail;
Method or attribute name: usedScene: UsedScene;
New version: 9
Substitute API: ohos.bundle.bundleManager.ReqPermissionDetail
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: export interface BundleInfo
Old version:
Class name: BundleInfo;
Method or attribute name: export interface BundleInfo
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly name: string;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly name: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly type: string;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly type: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly appId: string;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly appId: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly uid: number;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly uid: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly installTime: number;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly installTime: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly updateTime: number;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly updateTime: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly appInfo: ApplicationInfo;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly appInfo: ApplicationInfo;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly abilityInfos: Array<AbilityInfo>;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly abilityInfos: Array<AbilityInfo>;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly reqPermissions: Array<string>;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly reqPermissions: Array<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly reqPermissionDetails: Array<ReqPermissionDetail>;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly reqPermissionDetails: Array<ReqPermissionDetail>;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly vendor: string;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly vendor: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly versionCode: number;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly versionCode: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly versionName: string;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly versionName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly compatibleVersion: number;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly compatibleVersion: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly targetVersion: number;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly targetVersion: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly isCompressNativeLibs: boolean;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly isCompressNativeLibs: boolean;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly hapModuleInfos: Array<HapModuleInfo>;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly hapModuleInfos: Array<HapModuleInfo>;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly entryModuleName: string;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly entryModuleName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly cpuAbi: string;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly cpuAbi: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly isSilentInstallation: string;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly isSilentInstallation: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly minCompatibleVersionCode: number;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly minCompatibleVersionCode: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly entryInstallationFree: boolean;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly entryInstallationFree: boolean;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: BundleInfo;
Method or attribute name: readonly reqPermissionStates: Array<number>;
Old version:
Class name: BundleInfo;
Method or attribute name: readonly reqPermissionStates: Array<number>;
New version: 9
Substitute API: ohos.bundle.bundleManager.BundleInfo
bundleInfo.d.ts
Deprecated version changed Class name: InstallParam;
Method or attribute name: export interface InstallParam
Old version:
Class name: InstallParam;
Method or attribute name: export interface InstallParam
New version: 9
Substitute API: ohos.bundle.installer#InstallParam
bundleInstaller.d.ts
Deprecated version changed Class name: InstallParam;
Method or attribute name: userId: number;
Old version:
Class name: InstallParam;
Method or attribute name: userId: number;
New version: 9
Substitute API: ohos.bundle.installer.InstallParam#userId
bundleInstaller.d.ts
Deprecated version changed Class name: InstallParam;
Method or attribute name: installFlag: number;
Old version:
Class name: InstallParam;
Method or attribute name: installFlag: number;
New version: 9
Substitute API: ohos.bundle.installer.InstallParam#installFlag
bundleInstaller.d.ts
Deprecated version changed Class name: InstallParam;
Method or attribute name: isKeepData: boolean;
Old version:
Class name: InstallParam;
Method or attribute name: isKeepData: boolean;
New version: 9
Substitute API: ohos.bundle.installer.InstallParam#isKeepData
bundleInstaller.d.ts
Deprecated version changed Class name: InstallStatus;
Method or attribute name: export interface InstallStatus
Old version:
Class name: InstallStatus;
Method or attribute name: export interface InstallStatus
New version: 9
Substitute API:
bundleInstaller.d.ts
Deprecated version changed Class name: InstallStatus;
Method or attribute name: status: bundle.InstallErrorCode;
Old version:
Class name: InstallStatus;
Method or attribute name: status: bundle.InstallErrorCode;
New version: 9
Substitute API:
bundleInstaller.d.ts
Deprecated version changed Class name: InstallStatus;
Method or attribute name: statusMessage: string;
Old version:
Class name: InstallStatus;
Method or attribute name: statusMessage: string;
New version: 9
Substitute API:
bundleInstaller.d.ts
Deprecated version changed Class name: BundleInstaller;
Method or attribute name: export interface BundleInstaller
Old version:
Class name: BundleInstaller;
Method or attribute name: export interface BundleInstaller
New version: 9
Substitute API: ohos.bundle.installer#BundleInstaller
bundleInstaller.d.ts
Deprecated version changed Class name: BundleInstaller;
Method or attribute name: install(bundleFilePaths: Array<string>, param: InstallParam, callback: AsyncCallback<InstallStatus>): void;
Old version:
Class name: BundleInstaller;
Method or attribute name: install(bundleFilePaths: Array<string>, param: InstallParam, callback: AsyncCallback<InstallStatus>): void;
New version: 9
Substitute API: ohos.bundle.installer.BundleInstaller#install
bundleInstaller.d.ts
Deprecated version changed Class name: BundleInstaller;
Method or attribute name: uninstall(bundleName: string, param: InstallParam, callback: AsyncCallback<InstallStatus>): void;
Old version:
Class name: BundleInstaller;
Method or attribute name: uninstall(bundleName: string, param: InstallParam, callback: AsyncCallback<InstallStatus>): void;
New version: 9
Substitute API: ohos.bundle.installer.BundleInstaller#uninstall
bundleInstaller.d.ts
Deprecated version changed Class name: BundleInstaller;
Method or attribute name: recover(bundleName: string, param: InstallParam, callback: AsyncCallback<InstallStatus>): void;
Old version:
Class name: BundleInstaller;
Method or attribute name: recover(bundleName: string, param: InstallParam, callback: AsyncCallback<InstallStatus>): void;
New version: 9
Substitute API: ohos.bundle.installer.BundleInstaller#recover
bundleInstaller.d.ts
Deprecated version changed Class name: BundleStatusCallback;
Method or attribute name: export interface BundleStatusCallback
Old version:
Class name: BundleStatusCallback;
Method or attribute name: export interface BundleStatusCallback
New version: 9
Substitute API:
bundleStatusCallback.d.ts
Deprecated version changed Class name: BundleStatusCallback;
Method or attribute name: add: (bundleName : string, userId: number) => void;
Old version:
Class name: BundleStatusCallback;
Method or attribute name: add: (bundleName : string, userId: number) => void;
New version: 9
Substitute API:
bundleStatusCallback.d.ts
Deprecated version changed Class name: BundleStatusCallback;
Method or attribute name: update: (bundleName : string, userId: number) => void;
Old version:
Class name: BundleStatusCallback;
Method or attribute name: update: (bundleName : string, userId: number) => void;
New version: 9
Substitute API:
bundleStatusCallback.d.ts
Deprecated version changed Class name: BundleStatusCallback;
Method or attribute name: remove: (bundleName : string, userId: number) => void;
Old version:
Class name: BundleStatusCallback;
Method or attribute name: remove: (bundleName : string, userId: number) => void;
New version: 9
Substitute API:
bundleStatusCallback.d.ts
Deprecated version changed Class name: CustomizeData;
Method or attribute name: export interface CustomizeData
Old version:
Class name: CustomizeData;
Method or attribute name: export interface CustomizeData
New version: 9
Substitute API: ohos.bundle.bundleManager.Metadata
customizeData.d.ts
Deprecated version changed Class name: CustomizeData;
Method or attribute name: name: string;
Old version:
Class name: CustomizeData;
Method or attribute name: name: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.Metadata
customizeData.d.ts
Deprecated version changed Class name: CustomizeData;
Method or attribute name: value: string;
Old version:
Class name: CustomizeData;
Method or attribute name: value: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.Metadata
customizeData.d.ts
Deprecated version changed Class name: CustomizeData;
Method or attribute name: extra: string;
Old version:
Class name: CustomizeData;
Method or attribute name: extra: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.Metadata
customizeData.d.ts
Deprecated version changed Class name: ElementName;
Method or attribute name: export interface ElementName
Old version:
Class name: ElementName;
Method or attribute name: export interface ElementName
New version: 9
Substitute API: ohos.bundle.bundleManager.ElementName
elementName.d.ts
Deprecated version changed Class name: ElementName;
Method or attribute name: deviceId?: string;
Old version:
Class name: ElementName;
Method or attribute name: deviceId?: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ElementName
elementName.d.ts
Deprecated version changed Class name: ElementName;
Method or attribute name: bundleName: string;
Old version:
Class name: ElementName;
Method or attribute name: bundleName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ElementName
elementName.d.ts
Deprecated version changed Class name: ElementName;
Method or attribute name: abilityName: string;
Old version:
Class name: ElementName;
Method or attribute name: abilityName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ElementName
elementName.d.ts
Deprecated version changed Class name: ElementName;
Method or attribute name: uri?: string;
Old version:
Class name: ElementName;
Method or attribute name: uri?: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ElementName
elementName.d.ts
Deprecated version changed Class name: ElementName;
Method or attribute name: shortName?: string;
Old version:
Class name: ElementName;
Method or attribute name: shortName?: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.ElementName
elementName.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: export interface HapModuleInfo
Old version:
Class name: HapModuleInfo;
Method or attribute name: export interface HapModuleInfo
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly name: string;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly name: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly description: string;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly description: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly descriptionId: number;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly descriptionId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly icon: string;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly icon: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly label: string;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly label: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly labelId: number;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly labelId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly iconId: number;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly iconId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly backgroundImg: string;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly backgroundImg: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly supportedModes: number;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly supportedModes: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly reqCapabilities: Array<string>;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly reqCapabilities: Array<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly deviceTypes: Array<string>;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly deviceTypes: Array<string>;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly abilityInfo: Array<AbilityInfo>;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly abilityInfo: Array<AbilityInfo>;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly moduleName: string;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly moduleName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly mainAbilityName: string;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly mainAbilityName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: HapModuleInfo;
Method or attribute name: readonly installationFree: boolean;
Old version:
Class name: HapModuleInfo;
Method or attribute name: readonly installationFree: boolean;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
hapModuleInfo.d.ts
Deprecated version changed Class name: LauncherAbilityInfo;
Method or attribute name: export interface LauncherAbilityInfo
Old version:
Class name: LauncherAbilityInfo;
Method or attribute name: export interface LauncherAbilityInfo
New version: 9
Substitute API: ohos.bundle.bundleManager.LauncherAbilityInfo
launcherAbilityInfo.d.ts
Deprecated version changed Class name: LauncherAbilityInfo;
Method or attribute name: readonly applicationInfo: ApplicationInfo;
Old version:
Class name: LauncherAbilityInfo;
Method or attribute name: readonly applicationInfo: ApplicationInfo;
New version: 9
Substitute API: ohos.bundle.bundleManager.LauncherAbilityInfo
launcherAbilityInfo.d.ts
Deprecated version changed Class name: LauncherAbilityInfo;
Method or attribute name: readonly elementName : ElementName;
Old version:
Class name: LauncherAbilityInfo;
Method or attribute name: readonly elementName : ElementName;
New version: 9
Substitute API: ohos.bundle.bundleManager.LauncherAbilityInfo
launcherAbilityInfo.d.ts
Deprecated version changed Class name: LauncherAbilityInfo;
Method or attribute name: readonly labelId: number;
Old version:
Class name: LauncherAbilityInfo;
Method or attribute name: readonly labelId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.LauncherAbilityInfo
launcherAbilityInfo.d.ts
Deprecated version changed Class name: LauncherAbilityInfo;
Method or attribute name: readonly iconId: number;
Old version:
Class name: LauncherAbilityInfo;
Method or attribute name: readonly iconId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.LauncherAbilityInfo
launcherAbilityInfo.d.ts
Deprecated version changed Class name: LauncherAbilityInfo;
Method or attribute name: readonly userId: number;
Old version:
Class name: LauncherAbilityInfo;
Method or attribute name: readonly userId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.LauncherAbilityInfo
launcherAbilityInfo.d.ts
Deprecated version changed Class name: LauncherAbilityInfo;
Method or attribute name: readonly installTime : number;
Old version:
Class name: LauncherAbilityInfo;
Method or attribute name: readonly installTime : number;
New version: 9
Substitute API: ohos.bundle.bundleManager.LauncherAbilityInfo
launcherAbilityInfo.d.ts
Deprecated version changed Class name: ModuleInfo;
Method or attribute name: export interface ModuleInfo
Old version:
Class name: ModuleInfo;
Method or attribute name: export interface ModuleInfo
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
moduleInfo.d.ts
Deprecated version changed Class name: ModuleInfo;
Method or attribute name: readonly moduleName: string;
Old version:
Class name: ModuleInfo;
Method or attribute name: readonly moduleName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
moduleInfo.d.ts
Deprecated version changed Class name: ModuleInfo;
Method or attribute name: readonly moduleSourceDir: string;
Old version:
Class name: ModuleInfo;
Method or attribute name: readonly moduleSourceDir: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.HapModuleInfo
moduleInfo.d.ts
Deprecated version changed Class name: PermissionDef;
Method or attribute name: export interface PermissionDef
Old version:
Class name: PermissionDef;
Method or attribute name: export interface PermissionDef
New version: 9
Substitute API: ohos.bundle.bundleManager.PermissionDef
PermissionDef.d.ts
Deprecated version changed Class name: PermissionDef;
Method or attribute name: permissionName: string;
Old version:
Class name: PermissionDef;
Method or attribute name: permissionName: string;
New version: 9
Substitute API: ohos.bundle.bundleManager.PermissionDef
PermissionDef.d.ts
Deprecated version changed Class name: PermissionDef;
Method or attribute name: grantMode: number;
Old version:
Class name: PermissionDef;
Method or attribute name: grantMode: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.PermissionDef
PermissionDef.d.ts
Deprecated version changed Class name: PermissionDef;
Method or attribute name: labelId: number;
Old version:
Class name: PermissionDef;
Method or attribute name: labelId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.PermissionDef
PermissionDef.d.ts
Deprecated version changed Class name: PermissionDef;
Method or attribute name: descriptionId: number;
Old version:
Class name: PermissionDef;
Method or attribute name: descriptionId: number;
New version: 9
Substitute API: ohos.bundle.bundleManager.PermissionDef
PermissionDef.d.ts
Deprecated version changed Class name: RemoteAbilityInfo;
Method or attribute name: export interface RemoteAbilityInfo
Old version:
Class name: RemoteAbilityInfo;
Method or attribute name: export interface RemoteAbilityInfo
New version: 9
Substitute API: ohos.bundle.distributedBundleManager.RemoteAbilityInfo
remoteAbilityInfo.d.ts
Deprecated version changed Class name: RemoteAbilityInfo;
Method or attribute name: readonly elementName: ElementName;
Old version:
Class name: RemoteAbilityInfo;
Method or attribute name: readonly elementName: ElementName;
New version: 9
Substitute API: ohos.bundle.distributedBundleManager.RemoteAbilityInfo
remoteAbilityInfo.d.ts
Deprecated version changed Class name: RemoteAbilityInfo;
Method or attribute name: readonly label: string;
Old version:
Class name: RemoteAbilityInfo;
Method or attribute name: readonly label: string;
New version: 9
Substitute API: ohos.bundle.distributedBundleManager.RemoteAbilityInfo
remoteAbilityInfo.d.ts
Deprecated version changed Class name: RemoteAbilityInfo;
Method or attribute name: readonly icon: string;
Old version:
Class name: RemoteAbilityInfo;
Method or attribute name: readonly icon: string;
New version: 9
Substitute API: ohos.bundle.distributedBundleManager.RemoteAbilityInfo
remoteAbilityInfo.d.ts
Deprecated version changed Class name: ShortcutWant;
Method or attribute name: export interface ShortcutWant
Old version:
Class name: ShortcutWant;
Method or attribute name: export interface ShortcutWant
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutWant
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutWant;
Method or attribute name: readonly targetBundle: string;
Old version:
Class name: ShortcutWant;
Method or attribute name: readonly targetBundle: string;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutWant
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutWant;
Method or attribute name: readonly targetClass: string;
Old version:
Class name: ShortcutWant;
Method or attribute name: readonly targetClass: string;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutWant
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: export interface ShortcutInfo
Old version:
Class name: ShortcutInfo;
Method or attribute name: export interface ShortcutInfo
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly id: string;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly id: string;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly bundleName: string;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly bundleName: string;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly hostAbility: string;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly hostAbility: string;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly icon: string;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly icon: string;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly iconId: number;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly iconId: number;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly label: string;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly label: string;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly labelId: number;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly labelId: number;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly disableMessage: string;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly disableMessage: string;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly wants: Array<ShortcutWant>;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly wants: Array<ShortcutWant>;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly isStatic?: boolean
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly isStatic?: boolean
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly isHomeShortcut?: boolean;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly isHomeShortcut?: boolean;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Deprecated version changed Class name: ShortcutInfo;
Method or attribute name: readonly isEnabled?: boolean;
Old version:
Class name: ShortcutInfo;
Method or attribute name: readonly isEnabled?: boolean;
New version: 9
Substitute API: ohos.bundle.launcherBundleManager.ShortcutInfo
shortcutInfo.d.ts
Access level changed Class name: LauncherAbilityInfo;
Method or attribute name: export interface LauncherAbilityInfo
Old version:
Class name: LauncherAbilityInfo;
Method or attribute name: export interface LauncherAbilityInfo
New version: systemapi
launcherAbilityInfo.d.ts
Model changed Class name: AbilityInfo;
Method or attribute name: readonly orientation: bundle.DisplayOrientation;
Old version: FAModelOnly
Class name: AbilityInfo;
Method or attribute name: readonly orientation: bundle.DisplayOrientation;
New version:
abilityInfo.d.ts