diff --git a/en/application-dev/Readme-EN.md b/en/application-dev/Readme-EN.md index d854b82e015d4bbf670b773670fd41ed1b856d03..95504e593a1ae40a3f8853ca28f3067c71729315 100644 --- a/en/application-dev/Readme-EN.md +++ b/en/application-dev/Readme-EN.md @@ -41,18 +41,46 @@ - [Resource Categories and Access](quick-start/resource-categories-and-access.md) - Learning ArkTS - [Getting Started with ArkTS](quick-start/arkts-get-started.md) - - ArkTS Syntax (Declarative UI) - - [Basic UI Description](quick-start/arkts-basic-ui-description.md) - - State Management - - [Basic Concepts](quick-start/arkts-state-mgmt-concepts.md) - - [State Management with Page-level Variables](quick-start/arkts-state-mgmt-page-level.md) - - [State Management with Application-level Variables](quick-start/arkts-state-mgmt-application-level.md) - - [Dynamic UI Element Building](quick-start/arkts-dynamic-ui-elememt-building.md) - - [Rendering Control](quick-start/arkts-rendering-control.md) - - [Restrictions and Extensions](quick-start/arkts-restrictions-and-extensions.md) + - Basic Syntax + - [Basic Syntax Overview](quick-start/arkts-basic-syntax-overview.md) + - [Declarative UI Description](quick-start/arkts-declarative-ui-description.md) + - Custom Component + - [Creating a Custom Component](quick-start/arkts-create-custom-components.md) + - [Page and Custom Component Lifecycle](quick-start/arkts-page-custom-components-lifecycle.md) + - [\@Builder: Custom Builder Function](quick-start/arkts-builder.md) + - [\@BuilderParam: @Builder Function Reference](quick-start/arkts-builderparam.md) + - [\@Styles: Definition of Resusable Styles](quick-start/arkts-style.md) + - [\@Extend: Extension of Built-in Components](quick-start/arkts-extend.md) + - [stateStyles: Polymorphic Style](quick-start/arkts-statestyles.md) + - State Management + - [State Management Overview](quick-start/arkts-state-management-overview.md) + - Component State Management + - [\@State: State Owned by Component](quick-start/arkts-state.md) + - [\@Prop: One-Way Synchronization from Parent to Child Components](quick-start/arkts-prop.md) + - [\@Link: Two-Way Synchronization Between Parent and Child Components](quick-start/arkts-link.md) + - [\@Provide and \@Consume: Two-Way Synchronization with Descendant Components](quick-start/arkts-provide-and-consume.md) + - [\@Observed and \@ObjectLink: Observing Attribute Changes in Nested Class Objects](quick-start/arkts-observed-and-objectlink.md) + - Application State Management + - [Application State Management Overview](quick-start/arkts-application-state-management-overview.md) + - [LocalStorage: UI State Storage](quick-start/arkts-localstorage.md) + - [AppStorage: Application-wide UI State Storage](quick-start/arkts-appstorage.md) + - [PersistentStorage: Application State Persistence](quick-start/arkts-persiststorage.md) + - [Environment: Device Environment Query](quick-start/arkts-environment.md) + - Other State Management Features + - [Overview of Other State Management Features](quick-start/arkts-other-state-mgmt-functions-overview.md) + - [\@Watch: Getting Notified of State Variable Changes](quick-start/arkts-watch.md) + - [$$ Syntax: Two-Way Synchronization of Built-in Components](quick-start/arkts-two-way-sync.md) + - Rendering Control + - [Rendering Control Overview](quick-start/arkts-rendering-control-overview.md) + - [if/else: Conditional Rendering](quick-start/arkts-rendering-control-ifelse.md) + - [ForEach: Rendering of Repeated Content](quick-start/arkts-rendering-control-foreach.md) + - [LazyForEach: Lazy Data Loading](quick-start/arkts-rendering-control-lazyforeach.md) + + - Development - [Application Models](application-models/Readme-EN.md) - [UI Development](ui/Readme-EN.md) + - [Web](web/Readme-EN.md) - [Notification](notification/Readme-EN.md) - [Window Manager](windowmanager/Readme-EN.md) - [WebGL](webgl/Readme-EN.md) @@ -86,6 +114,7 @@ - [ArkTS and JS APIs](reference/apis/Readme-EN.md) - [Error Codes](reference/errorcodes/Readme-EN.md) - Native APIs + - [Native APIs](reference/native-apis/Readme-EN.md) - [Standard Libraries](reference/native-lib/third_party_libc/musl.md) - [Node_API](reference/native-lib/third_party_napi/napi.md) - [FAQs](faqs/Readme-EN.md) diff --git a/en/application-dev/database/Readme-EN.md b/en/application-dev/database/Readme-EN.md index b397b5b38682c9910724ea70e4759fe9a9aaf06e..77e1d8f9738d949ce9b0f0396bf66f99b9bf924e 100644 --- a/en/application-dev/database/Readme-EN.md +++ b/en/application-dev/database/Readme-EN.md @@ -5,7 +5,7 @@ - [Overview of Application Data Persistence](app-data-persistence-overview.md) - [Persisting Preferences Data](data-persistence-by-preferences.md) - [Persisting KV Store Data](data-persistence-by-kv-store.md) - - [Persisting RDB Store Data] (data-persistence-by-rdb-store.md) + - [Persisting RDB Store Data](data-persistence-by-rdb-store.md) - Distributed Application Data Synchronization - [Distributed Application Data Synchronization Overview](sync-app-data-across-devices-overview.md) - [Cross-Device Synchronization of KV Stores](data-sync-of-kv-store.md) @@ -16,7 +16,7 @@ - [Database Backup and Restoration](data-backup-and-restore.md) - [Database Encryption](data-encryption.md) - [Access Control by Device and Data Level](access-control-by-device-and-data-level.md) -- Cross-Application Data Sharing (Available Only for System Applications) +- Cross-Application Data Sharing (for System Applications Only) - [Cross-Application Data Sharing Overview](share-device-data-across-apps-overview.md) - [Sharing Data Using DataShareExtensionAbility](share-data-by-datashareextensionability.md) - [Sharing Data in Silent Access](share-data-by-silent-access.md) diff --git a/en/application-dev/file-management/Readme-EN.md b/en/application-dev/file-management/Readme-EN.md index 1e644dbac0ff2cf0e9f9deb205d234abc716ac08..bdc1bc7c1b00195bc24c71396f4fed78b93de15a 100644 --- a/en/application-dev/file-management/Readme-EN.md +++ b/en/application-dev/file-management/Readme-EN.md @@ -1,4 +1,4 @@ -# File +# File Management - [File Management Overview](file-management-overview.md) - Application File @@ -20,4 +20,4 @@ - Distributed File System - [Distributed File System Overview](distributed-fs-overview.md) - [Setting the Security Level of a Distributed File](set-security-label.md) - - [Access Files Across Devices](file-access-across-devices.md) + - [Accessing Files Across Devices](file-access-across-devices.md) diff --git a/en/application-dev/file-management/file-access-across-devices.md b/en/application-dev/file-management/file-access-across-devices.md index 434af1a2920a9f9144dfa6e29bcf57edbd57bd93..840078f5f982d55a9d9a3713fafa49d632d352f8 100644 --- a/en/application-dev/file-management/file-access-across-devices.md +++ b/en/application-dev/file-management/file-access-across-devices.md @@ -1,4 +1,4 @@ -# Access Files Across Devices +# Accessing Files Across Devices The distributed file system provides cross-device file access capabilities for applications. For the same application installed on multiple devices, you can implement read and write of the files in the application's distributed directory (**/data/storage/el2/distributedfiles/**) across devices by using [ohos.file.fs](app-file-access.md). For example, device A and device B are installed with the same application. After device A and device B are connected to form a Virtual Device, the application on device A can access the files of the same application on Device B. What you need to do is place the files to the distributed directory. diff --git a/en/application-dev/media/Readme-EN.md b/en/application-dev/media/Readme-EN.md index f3a233ca129527db112459ab5110df49b8e1052d..efc78832291fda395506dc0864af4fae0f068621 100755 --- a/en/application-dev/media/Readme-EN.md +++ b/en/application-dev/media/Readme-EN.md @@ -45,11 +45,11 @@ - [Session Management](camera-session-management.md) - [Camera Preview](camera-preview.md) - [Camera Photographing](camera-shooting.md) - - [Video Recording](camera-recording.md) + - [Camera Recording](camera-recording.md) - [Camera Metadata](camera-metadata.md) - Best Practices - [Camera Photographing Sample](camera-shooting-case.md) - - [Video Recording Sample](camera-recording-case.md) + - [Camera Recording Sample](camera-recording-case.md) - Image - [Image Overview](image-overview.md) - [Image Decoding](image-decoding.md) diff --git a/en/application-dev/media/camera-recording-case.md b/en/application-dev/media/camera-recording-case.md index 4d284f7e675fe0693240bbb678391147926652e7..7aedbf5688812c47542ee627329b137325f17bbc 100644 --- a/en/application-dev/media/camera-recording-case.md +++ b/en/application-dev/media/camera-recording-case.md @@ -1,4 +1,4 @@ -# Video Recording Sample +# Camera Recording Sample ## Development Process diff --git a/en/application-dev/media/camera-recording.md b/en/application-dev/media/camera-recording.md index 421ff990bf45b372dd39cd3346e29b636f292762..208b0664204ef2f74bb1160702053bde61fdf316 100644 --- a/en/application-dev/media/camera-recording.md +++ b/en/application-dev/media/camera-recording.md @@ -1,4 +1,4 @@ -# Video Recording +# Camera Recording Video recording is also an important function of the camera application. Video recording is the process of cyclic capturing of frames. To smooth videos, you can follow step 4 in [Camera Photographing](camera-shooting.md) to set the resolution, flash, focal length, photo quality, and rotation angle. diff --git a/en/application-dev/reference/apis/Readme-EN.md b/en/application-dev/reference/apis/Readme-EN.md index cd3ed137888c45ee068b0ea07505dc4c6871c47c..00c14c10d78af872163b6c379315e5c11982b845 100644 --- a/en/application-dev/reference/apis/Readme-EN.md +++ b/en/application-dev/reference/apis/Readme-EN.md @@ -172,8 +172,7 @@ - [@ohos.promptAction (Prompt)](js-apis-promptAction.md) - [@ohos.router (Page Routing)](js-apis-router.md) - [@ohos.measure (Text Measurement)](js-apis-measure.md) - - [@ohos.uiAppearance (UI Appearance)](js-apis-uiappearance.md) - + - Graphics - [@ohos.animation.windowAnimationManager (Window Animation Management)](js-apis-windowAnimationManager.md) - [@ohos.application.WindowExtensionAbility (WindowExtensionAbility)](js-apis-application-windowExtensionAbility.md) diff --git a/en/application-dev/reference/apis/js-apis-uiappearance.md b/en/application-dev/reference/apis/js-apis-uiappearance.md deleted file mode 100644 index ebbdc971840c8f3669bc19dbba0ebd0d95b28d60..0000000000000000000000000000000000000000 --- a/en/application-dev/reference/apis/js-apis-uiappearance.md +++ /dev/null @@ -1,106 +0,0 @@ -# @ohos.uiAppearance (UI Appearance) - -The **uiAppearance** module provides basic capabilities for managing the system appearance. It allows for color mode configuration currently, and will introduce more features over time. - -> **NOTE** -> -> The APIs of this module are supported since API version 9. Updates will be marked with a superscript to indicate their earliest API version. -> -> The APIs provided by this module are system APIs. - - -## Modules to Import - -```ts -import uiAppearance from '@ohos.uiAppearance' -``` - - -## DarkMode - -Enumerates the color modes. - - -**System capability**: SystemCapability.ArkUI.UiAppearance - -| Name| Value| Description| -| -- | -- | -- | -| ALWAYS_DARK | 0 | The system is always in dark mode. | -| ALWAYS_LIGHT | 1 | The system is always in light mode.| - - -## uiAppearance.setDarkMode - -setDarkMode(mode: DarkMode, callback: AsyncCallback\): void - -Sets the system color mode. This API uses an asynchronous callback to return the result. - -**Permission required**: ohos.permission.UPDATE_CONFIGURATION - -**System capability**: SystemCapability.ArkUI.UiAppearance - -**Parameters** -| Name| Type| Mandatory| Description| -| -- | -- | -- | -- | -| mode | [DarkMode](#darkmode) | Yes| Color mode to set.| -| callback | AsyncCallback\| Yes| Callback used to return the result.| - -**Example** - ```ts -uiAppearance.setDarkMode(uiAppearance.DarkMode.ALWAYS_DARK, (err) => { - console.info(`${err}`); -}) - ``` - - -## uiAppearance.setDarkMode - -setDarkMode(mode: DarkMode): Promise\; - -Sets the system color mode. This API uses a promise to return the result. - -**Permission required**: ohos.permission.UPDATE_CONFIGURATION - -**System capability**: SystemCapability.ArkUI.UiAppearance - -**Parameters** -| Name| Type| Mandatory| Description| -| -- | -- | -- | -- | -| mode | [DarkMode](#darkmode) | Yes| Color mode to set.| - -**Return value** - -| Type | Description | -| ------ | ------------------------------ | -| Promise\ | Promise that returns no value.| - -**Example** - ```ts -uiAppearance.setDarkMode(uiAppearance.DarkMode.ALWAYS_DARK).then(() => { - console.log('Set dark-mode successfully.'); -}).catch((err) => { - console.log(`Set dark-mode failed, ${err}`); -}); - ``` - - -## uiAppearance.getDarkMode - -getDarkMode(): DarkMode; - -Obtains the system color mode. - -**Permission required**: ohos.permission.UPDATE_CONFIGURATION - -**System capability**: SystemCapability.ArkUI.UiAppearance - -**Return value** -| Type| Description| -| -- | -- | -|[DarkMode](#darkmode) | Color mode obtained.| - -**Example** - ```ts -let darkMode = uiAppearance.getDarkMode(); -console.log(`Get dark-mode ${darkMode}`); - ``` diff --git a/en/application-dev/website.md b/en/application-dev/website.md index 44dc6a7869998184337cf1083fd5f183c54ff761..a40a6a7ae93b3345e6f385ac6ccfe6e6411d6166 100644 --- a/en/application-dev/website.md +++ b/en/application-dev/website.md @@ -26,6 +26,8 @@ - [HAR](quick-start/har-package.md) - HSP - [In-Application HSP Development](quick-start/in-app-hsp.md) + - Atomic Service + - [Atomic Service Development](quick-start/atomicService.md) - Quick Fix - [Quick Fix Overview](quick-start/quickfix-principles.md) - [CLI-based Quick Fix Development](quick-start/quickfix-debug.md) @@ -41,15 +43,40 @@ - [Resource Categories and Access](quick-start/resource-categories-and-access.md) - Learning ArkTS - [Getting Started with ArkTS](quick-start/arkts-get-started.md) - - ArkTS Syntax (Declarative UI) - - [Basic UI Description](quick-start/arkts-basic-ui-description.md) - - State Management - - [Basic Concepts](quick-start/arkts-state-mgmt-concepts.md) - - [State Management with Page-level Variables](quick-start/arkts-state-mgmt-page-level.md) - - [State Management with Application-level Variables](quick-start/arkts-state-mgmt-application-level.md) - - [Dynamic UI Element Building](quick-start/arkts-dynamic-ui-elememt-building.md) - - [Rendering Control](quick-start/arkts-rendering-control.md) - - [Restrictions and Extensions](quick-start/arkts-restrictions-and-extensions.md) + - Basic Syntax + - [Basic Syntax Overview](quick-start/arkts-basic-syntax-overview.md) + - [Declarative UI Description](quick-start/arkts-declarative-ui-description.md) + - Custom Component + - [Creating a Custom Component](quick-start/arkts-create-custom-components.md) + - [Page and Custom Component Lifecycle](quick-start/arkts-page-custom-components-lifecycle.md) + - [\@Builder: Custom Builder Function](quick-start/arkts-builder.md) + - [\@BuilderParam: @Builder Function Reference](quick-start/arkts-builderparam.md) + - [\@Styles: Definition of Resusable Styles](quick-start/arkts-style.md) + - [\@Extend: Extension of Built-in Components](quick-start/arkts-extend.md) + - [stateStyles: Polymorphic Style](quick-start/arkts-statestyles.md) + - State Management + - [State Management Overview](quick-start/arkts-state-management-overview.md) + - Component State Management + - [\@State: State Owned by Component](quick-start/arkts-state.md) + - [\@Prop: One-Way Synchronization from Parent to Child Components](quick-start/arkts-prop.md) + - [\@Link: Two-Way Synchronization Between Parent and Child Components](quick-start/arkts-link.md) + - [\@Provide and \@Consume: Two-Way Synchronization with Descendant Components](quick-start/arkts-provide-and-consume.md) + - [\@Observed and \@ObjectLink: Observing Attribute Changes in Nested Class Objects](quick-start/arkts-observed-and-objectlink.md) + - Application State Management + - [Application State Management Overview](quick-start/arkts-application-state-management-overview.md) + - [LocalStorage: UI State Storage](quick-start/arkts-localstorage.md) + - [AppStorage: Application-wide UI State Storage](quick-start/arkts-appstorage.md) + - [PersistentStorage: Application State Persistence](quick-start/arkts-persiststorage.md) + - [Environment: Device Environment Query](quick-start/arkts-environment.md) + - Other State Management Features + - [Overview of Other State Management Features](quick-start/arkts-other-state-mgmt-functions-overview.md) + - [\@Watch: Getting Notified of State Variable Changes](quick-start/arkts-watch.md) + - [$$ Syntax: Two-Way Synchronization of Built-in Components](quick-start/arkts-two-way-sync.md) + - Rendering Control + - [Rendering Control Overview](quick-start/arkts-rendering-control-overview.md) + - [if/else: Conditional Rendering](quick-start/arkts-rendering-control-ifelse.md) + - [ForEach: Rendering of Repeated Content](quick-start/arkts-rendering-control-foreach.md) + - [LazyForEach: Lazy Data Loading](quick-start/arkts-rendering-control-lazyforeach.md) - Development - Application Models - Application Model Overview @@ -70,7 +97,6 @@ - [ExtensionAbility Component Overview](application-models/extensionability-overview.md) - [ServiceExtensionAbility](application-models/serviceextensionability.md) - [DataShareExtensionAbility (for System Applications Only)](application-models/datashareextensionability.md) - - [FormExtensionAbility (Widget)](application-models/widget-development-stage.md) - [AccessibilityExtensionAbility](application-models/accessibilityextensionability.md) - [EnterpriseAdminExtensionAbility](application-models/enterprise-extensionAbility.md) - [InputMethodExtensionAbility](application-models/inputmethodextentionability.md) @@ -187,35 +213,67 @@ - [Storage Switching](application-models/storage-switch.md) - UI Development - [ArkUI Overview](ui/arkui-overview.md) - - ArkTS-based Declarative Development Paradigm - - [Overview](ui/ui-ts-overview.md) - - [Declarative UI Development Guidelines](ui/ui-ts-developing-intro.md) - - Declarative UI Development Examples - - [Creating a Simple Page](ui/ui-ts-creating-simple-page.md) - - Building a Comprehensive Example - - [Building a Food Data Model](ui/ui-ts-building-data-model.md) - - [Building a Food Category List Layout](ui/ui-ts-building-category-list-layout.md) - - [Building a Food Category Grid Layout](ui/ui-ts-building-category-grid-layout.md) - - [Implementing Page Redirection and Data Transmission](ui/ui-ts-page-redirection-data-transmission.md) - - Adding a Splash Screen Animation - - [Using the Drawing Feature](ui/ui-ts-drawing-feature.md) - - [Using the Animation Feature](ui/ui-ts-animation-feature.md) - - [Common Components](ui/ui-ts-components-intro.md) - - Common Layout Development - - Adaptive Layouts - - [Linear Layout](ui/ui-ts-layout-linear.md) - - [Statck Layout](ui/ui-ts-layout-stack.md) - - [Flex Layout](ui/ui-ts-layout-flex.md) - - [Grid Layout](ui/ui-ts-layout-grid.md) - - Responsive Layouts - - [Grid Layout](ui/ui-ts-layout-grid-container-new.md) - - [Media Query](ui/ui-ts-layout-mediaquery.md) - - [Custom Component Lifecycle Callbacks](ui/ui-ts-custom-component-lifecycle-callbacks.md) - - [Web Component Development](ui/ui-ts-components-web.md) - - [Recommendations for Improving Performance](ui/ui-ts-performance-improvement-recommendation.md) - - UI Development with JavaScript-compatible Web-like Development Paradigm - - [Overview](ui/ui-js-overview.md) - - Framework + - UI Development (ArkTS-based Declarative Development Paradigm) + - [UI Development (ArkTS-based Declarative Development Paradigm) Overview](ui/arkts-ui-development-overview.md) + - Layout Development + - [Layout Overview](ui/arkts-layout-development-overview.md) + - Building a Layout + - [Linear Layout](ui/arkts-layout-development-linear.md) + - [Stack Layout](ui/arkts-layout-development-stack-layout.md) + - [Flex Layout](ui/arkts-layout-development-flex-layout.md) + - [Relative Layout](ui/arkts-layout-development-relative-layout.md) + - [Responsive Grid Layout](ui/arkts-layout-development-grid-layout.md) + - [Media Query](ui/arkts-layout-development-media-query.md) + - [Creating a List](ui/arkts-layout-development-create-list.md) + - [Creating a Grid](ui/arkts-layout-development-create-grid.md) + - [Creating a Swiper](ui/arkts-layout-development-create-looping.md) + - [Improving Layout Performance](ui/arkts-layout-development-performance-boost.md) + - Adding a Component + - Adding a Common Component + - [Button](ui/arkts-common-components-button.md) + - [Radio Button](ui/arkts-common-components-radio-button.md) + - [Toggle](ui/arkts-common-components-switch.md) + - [Progress Indicator](ui/arkts-common-components-progress-indicator.md) + - [Text Display](ui/arkts-common-components-text-display.md) + - [Text Input](ui/arkts-common-components-text-input.md) + - [Custom Dialog Box](ui/arkts-common-components-custom-dialog.md) + - [Video Playback](ui/arkts-common-components-video-player.md) + - [XComponent](ui/arkts-common-components-xcomponent.md) + - Adding a Bubble and Menu + - [Bubble](ui/arkts-popup-and-menu-components-popup.md) + - [Menu](ui/arkts-popup-and-menu-components-menu.md) + - Setting Page Routing and Component Navigation + - [Page Routing](ui/arkts-routing.md) + - Component Navigation + - [Navigation](ui/arkts-navigation-navigation.md) + - [Tabs](ui/arkts-navigation-tabs.md) + - Using Graphics + - [Displaying Images](ui/arkts-graphics-display.md) + - [Drawing Geometric Shapes](ui/arkts-geometric-shape-drawing.md) + - [Drawing Custom Graphics on the Canvas](ui/arkts-drawing-customization-on-canvas.md) + - Using Animation + - [Animation Overview](ui/arkts-animation-overview.md) + - Animation Within a Page + - [Layout Update Animation](ui/arkts-layout-update-animation.md) + - [Transition Animation Within a Component](ui/arkts-transition-animation-within-component.md) + - [Spring Curve Animation](ui/arkts-spring-animation.md) + - Animation Between Pages + - [Zoom Animation](ui/arkts-zoom-animation.md) + - [Page Transition Animation](ui/arkts-page-transition-animation.md) + - Using Interaction Events + - [Interaction Event Overview](ui/arkts-event-overview.md) + - Universal Events + - [Touchscreen Event](ui/arkts-common-events-touch-screen-event.md) + - [Keyboard and Mouse Event](ui/arkts-common-events-device-input-event.md) + - [Focus Event](ui/arkts-common-events-focus-event.md) + - Gesture Events + - [Gesture Binding](ui/arkts-gesture-events-binding.md) + - [Single Gesture](ui/arkts-gesture-events-single-gesture.md) + - [Combined Gestures](ui/arkts-gesture-events-combined-gestures.md) + - [Recommendations for Improving Performance](ui/arkts-performance-improvement-recommendation.md) + - UI Development (JavaScript-compatible Web-like Development Paradigm) + - [UI Development (JavaScript-compatible Web-like Development Paradigm) Overview](ui/ui-js-overview.md) + - Framework Overview - [File Organization](ui/js-framework-file.md) - ["js" Tag](ui/js-framework-js-tag.md) - [app.js](ui/js-framework-js-file.md) @@ -285,6 +343,22 @@ - [Animation Effect](ui/ui-js-animate-dynamic-effects.md) - [Animation Frame](ui/ui-js-animate-frame.md) - [Custom Components](ui/ui-js-custom-components.md) + - Web + - [Web Component Overview](web/web-component-overview.md) + - [Loading Pages by Using the Web Component](web/web-page-loading-with-web-components.md) + - Setting Basic Attributes and Events + - [Setting the Dark Mode](web/web-set-dark-mode.md) + - [Uploading Files](web/web-file-upload.md) + - [Opening Pages in a New Window](web/web-open-in-new-window.md) + - [Managing Location Permissions](web/web-geolocation-permission.md) + - Using Frontend Page JavaScript Code on the Application + - [Invoking Frontend Page Functions on the Application](web/web-in-app-frontend-page-function-invoking.md) + - [Invoking Application Functions on the Frontend Page](web/web-in-page-app-function-invoking.md) + - [Establishing a Data Channel Between the Application and the Frontend Page](web/web-app-page-data-channel.md) + - [Managing Page Redirection and Browsing History Navigation](web/web-redirection-and-browsing-history-mgmt.md) + - [Managing Cookies and Data Storage](web/web-cookie-and-data-storage-mgmt.md) + - [Customizing Page Request Responses](web/web-resource-interception-request-mgmt.md) + - [Debugging Frontend Pages by Using DevTools](web/web-debugging-with-devtools.md) - Notification - [Notification Overview](notification/notification-overview.md) - [Notification Subscription (for System Applications Only)](notification/notification-subscription.md) @@ -302,30 +376,64 @@ - [WebGL Overview](webgl/webgl-overview.md) - [WebGL Development](webgl/webgl-guidelines.md) - Media + - [Media Application Overview](media/media-application-overview.md) - Audio and Video - - [Audio Overview](media/audio-overview.md) - - [Audio Rendering Development](media/audio-renderer.md) - - [Audio Stream Management Development](media/audio-stream-manager.md) - - [Audio Capture Development](media/audio-capturer.md) - - [OpenSL ES Audio Playback Development](media/opensles-playback.md) - - [OpenSL ES Audio Recording Development](media/opensles-capture.md) - - [Audio Interruption Mode Development](media/audio-interruptmode.md) - - [Volume Management Development](media/audio-volume-manager.md) - - [Audio Routing and Device Management Development](media/audio-routing-manager.md) - - [AVPlayer Development (Recommended)](media/avplayer-playback.md) - - [AVRecorder Development (Recommended)](media/avrecorder.md) - - [Audio Playback Development (To Be Deprecated Soon)](media/audio-playback.md) - - [Audio Recording Development (To Be Deprecated Soon)](media/audio-recorder.md) - - [Video Playback Development (To Be Deprecated Soon)](media/video-playback.md) - - [Video Recording Development (To Be Deprecated Soon)](media/video-recorder.md) - - AVSession + - [Audio and Video Overview](media/av-overview.md) + - [AVPlayer and AVRecorder](media/avplayer-avrecorder-overview.md) + - Audio Playback + - [Audio Playback Overview](media/audio-playback-overview.md) + - [Using AVPlayer for Audio Playback](media/using-avplayer-for-playback.md) + - [Using AudioRenderer for Audio Playback](media/using-audiorenderer-for-playback.md) + - [Using OpenSL ES for Audio Playback](media/using-opensl-es-for-playback.md) + - [Using TonePlayer for Audio Playback (for System Applications Only)](media/using-toneplayer-for-playback.md) + - [Audio Playback Concurrency Policy](media/audio-playback-concurrency.md) + - [Volume Management](media/volume-management.md) + - [Audio Playback Stream Management](media/audio-playback-stream-management.md) + - [Audio Output Device Management](media/audio-output-device-management.md) + - [Distributed Audio Playback (for System Applications Only)](media/distributed-audio-playback.md) + - Audio Recording + - [Audio Recording Overview](media/audio-recording-overview.md) + - [Using AVRecorder for Audio Recording](media/using-avrecorder-for-recording.md) + - [Using AudioCapturer for Audio Recording](media/using-audiocapturer-for-recording.md) + - [Using OpenSL ES for Audio Recording](media/using-opensl-es-for-recording.md) + - [Microphone Management](media/mic-management.md) + - [Audio Recording Stream Management](media/audio-recording-stream-management.md) + - [Audio Input Device Management](media/audio-input-device-management.md) + - Audio Call + - [Audio Call Overview](media/audio-call-overview.md) + - [Developing Audio Call](media/audio-call-development.md) + - [Video Playback](media/video-playback.md) + - [Video Recording](media/video-recording.md) + - AVSession (for System Applications Only) - [AVSession Overview](media/avsession-overview.md) - - [AVSession Development](media/avsession-guidelines.md) + - Local AVSession + - [Local AVSession Overview](media/local-avsession-overview.md) + - [AVSession Provider](media/using-avsession-developer.md) + - [AVSession Controller](media/using-avsession-controller.md) + - Distributed AVSession + - [Distributed AVSession Overview](media/distributed-avsession-overview.md) + - [Using Distributed AVSession](media/using-distributed-avsession.md) + - Camera (for System Applications Only) + - [Camera Overview](media/camera-overview.md) + - Camera Development + - [Camera Development Preparations](media/camera-preparation.md) + - [Device Input Management](media/camera-device-input.md) + - [Session Management](media/camera-session-management.md) + - [Camera Preview](media/camera-preview.md) + - [Camera Photographing](media/camera-shooting.md) + - [Camera Recording](media/camera-recording.md) + - [Camera Metadata](media/camera-metadata.md) + - Best Practices + - [Camera Photographing Sample](media/camera-shooting-case.md) + - [Camera Recording Sample](media/camera-recording-case.md) - Image - - [Image Development](media/image.md) - - Camera - - [Camera Development](media/camera.md) - - [Distributed Camera Development](media/remote-camera.md) + - [Image Overview](media/image-overview.md) + - [Image Decoding](media/image-decoding.md) + - Image Processing + - [Image Transformation](media/image-transformation.md) + - [Pixel Map Operation](media/image-pixelmap-operation.md) + - [Image Encoding](media/image-encoding.md) + - [Image Tool](media/image-tool.md) - Security - Access Control - [Access Control Overview](security/accesstoken-overview.md) @@ -364,32 +472,50 @@ - [Redirecting to the Dial Screen](telephony/jumping-to-the-dial-screen.md) - [Obtaining Current Cellular Network Signal Information](telephony/cellular-network-signal-info.md) - Data Management - - Distributed Data Service - - [Distributed Data Service Overview](database/database-mdds-overview.md) - - [Distributed Data Service Development](database/database-mdds-guidelines.md) - - Relational Database - - [RDB Overview](database/database-relational-overview.md) - - [RDB Development](database/database-relational-guidelines.md) - - Preferences - - [Preferences Overview](database/database-preference-overview.md) - - [Preferences Development](database/database-preference-guidelines.md) - - Distributed Data Object - - [Distributed Data Object Overview](database/database-distributedobject-overview.md) - - [Distributed Data Object Development](database/database-distributedobject-guidelines.md) - - Data Share - - [DataShare Overview](database/database-datashare-overview.md) - - [DataShare Development](database/database-datashare-guidelines.md) + - [Data Management Overview](database/data-mgmt-overview.md) + - Application Data Persistence + - [Overview of Application Data Persistence](database/app-data-persistence-overview.md) + - [Persisting Preferences Data](database/data-persistence-by-preferences.md) + - [Persisting KV Store Data](database/data-persistence-by-kv-store.md) + - [Persisting RDB Store Data](database/data-persistence-by-rdb-store.md) + - Distributed Application Data Synchronization + - [Distributed Application Data Synchronization Overview](database/sync-app-data-across-devices-overview.md) + - [Cross-Device Synchronization of KV Stores](database/data-sync-of-kv-store.md) + - [Cross-Device Synchronization of RDB Stores](database/data-sync-of-rdb-store.md) + - [Cross-Device Synchronization of Distributed Data Objects](database/data-sync-of-distributed-data-object.md) + - Data Reliability and Security + - [Data Reliability and Security Overview](database/data-reliability-security-overview.md) + - [Database Backup and Restoration](database/data-backup-and-restore.md) + - [Database Encryption](database/data-encryption.md) + - [Access Control by Device and Data Level](database/access-control-by-device-and-data-level.md) + - Cross-Application Data Sharing (for System Applications Only) + - [Cross-Application Data Sharing Overview](database/share-device-data-across-apps-overview.md) + - [Sharing Data Using DataShareExtensionAbility](database/share-data-by-datashareextensionability.md) + - [Sharing Data in Silent Access](database/share-data-by-silent-access.md) - File Management - - MediaLibrary - - [MediaLibrary Development Overview](file-management/medialibrary-overview.md) - - [Media Asset Management](file-management/medialibrary-resource-guidelines.md) - - [File Path Management](file-management/medialibrary-filepath-guidelines.md) - - [Album Management](file-management/medialibrary-album-guidelines.md) - - File Access Framework - - [File Access Framework Overview](file-management/file-access-framework-overview.md) - - [FilePicker Guide](file-management/filepicker-guidelines.md) - - Task Management - - Background Task Management + - [File Management Overview](file-management/file-management-overview.md) + - Application File + - [Application File Overview](file-management/app-file-overview.md) + - [Application Sandbox Directory](file-management/app-sandbox-directory.md) + - Application File Access and Management + - [Accessing Application Files](file-management/app-file-access.md) + - [Uploading and Downloading Application Files](file-management/app-file-upload-download.md) + - [Obtaining Application and File System Space Statistics](file-management/app-fs-space-statistics.md) + - [Sending Files to an Application Sandbox](file-management/send-file-to-app-sandbox.md) + - [Sharing an Application File](file-management/share-app-file.md) + - User File + - [User File Overview](file-management/user-file-overview.md) + - Selecting and Saving User Files (FilePicker) + - [Selecting User Files](file-management/select-user-file.md) + - [Saving User Files](file-management/save-user-file.md) + - [Developing a FileManager Application (Available Only for System Applications)](file-management/dev-user-file-manager.md) + - [Managing External Storage Devices (Available Only for System Applications)](file-management/manage-external-storage.md) + - Distributed File System + - [Distributed File System Overview](file-management/distributed-fs-overview.md) + - [Setting the Security Level of a Distributed File](file-management/set-security-label.md) + - [Accessing Files Across Devices](file-management/file-access-across-devices.md) + - Background Task Management + - Background Task - [Background Task Management Overview](task-management/background-task-overview.md) - [Transient Task Development](task-management/transient-task-dev-guide.md) - [Continuous Task Development](task-management/continuous-task-dev-guide.md) @@ -938,7 +1064,6 @@ - [@ohos.promptAction (Prompt)](reference/apis/js-apis-promptAction.md) - [@ohos.router (Page Routing)](reference/apis/js-apis-router.md) - [@ohos.measure (Text Measurement)](reference/apis/js-apis-measure.md) - - [@ohos.uiAppearance (UI Appearance)](reference/apis/js-apis-uiappearance.md) - Graphics - [@ohos.animation.windowAnimationManager (Window Animation Management)](reference/apis/js-apis-windowAnimationManager.md) - [@ohos.application.WindowExtensionAbility (WindowExtensionAbility)](reference/apis/js-apis-application-windowExtensionAbility.md) @@ -1283,7 +1408,10 @@ - [Native XComponent](reference/native-apis/_o_h___native_x_component.md) - [HiLog](reference/native-apis/_hi_log.md) - [NativeWindow](reference/native-apis/_native_window.md) + - [OH_NativeBuffer](reference/native-apis/_o_h___native_buffer.md) - [Drawing](reference/native-apis/_drawing.md) + - [OH_NativeImage](reference/native-apis/_o_h___native_image.md) + - [NativeVsync](reference/native-apis/_native_vsync.md) - [Image](reference/native-apis/image.md) - [Rawfile](reference/native-apis/rawfile.md) - [MindSpore](reference/native-apis/_mind_spore.md) @@ -1311,7 +1439,10 @@ - [external_window.h](reference/native-apis/external__window_8h.md) - [image_pixel_map_napi.h](reference/native-apis/image__pixel__map__napi_8h.md) - [log.h](reference/native-apis/log_8h.md) + - [native_buffer.h](reference/native-apis/native__buffer_8h.md) + - [native_image.h](reference/native-apis/native__image_8h.md) - [native_interface_xcomponent.h](reference/native-apis/native__interface__xcomponent_8h.md) + - [native_vsync.h](reference/native-apis/native__vsync_8h.md) - [raw_dir.h](reference/native-apis/raw__dir_8h.md) - [raw_file_manager.h](reference/native-apis/raw__file__manager_8h.md) - [raw_file.h](reference/native-apis/raw__file_8h.md) @@ -1337,6 +1468,7 @@ - [native_huks_type.h](reference/native-apis/native__huks__type_8h.md) - Structs - [OH_Drawing_BitmapFormat](reference/native-apis/_o_h___drawing___bitmap_format.md) + - [OH_NativeBuffer_Config](reference/native-apis/_o_h___native_buffer___config.md) - [OH_NativeXComponent_Callback](reference/native-apis/_o_h___native_x_component___callback.md) - [OH_NativeXComponent_MouseEvent](reference/native-apis/_o_h___native_x_component___mouse_event.md) - [OH_NativeXComponent_MouseEvent_Callback](reference/native-apis/_o_h___native_x_component___mouse_event___callback.md) @@ -1377,11 +1509,11 @@ - Appendix - [Native API Symbols Not Exported](reference/native-lib/third_party_libc/musl-peculiar-symbol.md) - [EGL Symbols Exported from Native APIs](reference/native-lib/third_party_opengl/egl-symbol.md) - - [OpenGL ES 3.0 Symbols Exported from Native APIs](reference/native-lib/third_party_opengl/openglesv3-symbol.md) + - [OpenGL ES 3.0 Symbols Exported from Native APIs](reference/native-lib/third_party_opengl/openglesv3-symbol.md) + - [OpenSL ES Interfaces Supported by Native APIs](reference/native-lib/third_party_opensles/opensles.md) - FAQs - [Full SDK Compilation Guide](quick-start/full-sdk-compile-guide.md) - [Guide to Switching to Full SDK](quick-start/full-sdk-switch-guide.md) - - [Programming Languages](faqs/faqs-language.md) - [Ability Framework Development](faqs/faqs-ability.md) - [Bundle Management Development](faqs/faqs-bundle.md) - [ArkUI (ArkTS) Development](faqs/faqs-ui-ets.md) diff --git a/en/website.md b/en/website.md index 038d9e4c8ec99d6c1acb4ea4864033a00ae9f264..7197039ffdec9136f701c9937038a108153b3b57 100644 --- a/en/website.md +++ b/en/website.md @@ -3,30 +3,33 @@ - [OpenHarmony Project](OpenHarmony-Overview.md) - [Glossary](glossary.md) - Release Notes + - [OpenHarmony Version Definitions](release-notes/release-definitions/Release-version-definitions.md) - OpenHarmony 3.x Releases + - [OpenHarmony v3.2 Release (2023-04-09)](release-notes/OpenHarmony-v3.2-release.md) - [OpenHarmony v3.2 Beta5 (2023-01-31)](release-notes/OpenHarmony-v3.2-beta5.md) - [OpenHarmony v3.2 Beta4 (2022-11-30)](release-notes/OpenHarmony-v3.2-beta4.md) - [OpenHarmony v3.2 Beta3 (2022-09-30)](release-notes/OpenHarmony-v3.2-beta3.md) - [OpenHarmony v3.2 Beta2 (2022-07-30)](release-notes/OpenHarmony-v3.2-beta2.md) - [OpenHarmony v3.2 Beta1 (2022-05-31)](release-notes/OpenHarmony-v3.2-beta1.md) - - [OpenHarmony v3.1 Release (2022-03-30)](release-notes/OpenHarmony-v3.1-release.md) + - OpenHarmony v3.1 Release (2022-03-30) and the latest patch version OpenHarmony 3.1.4 Release (2022-11-03) + - [OpenHarmony v3.1 Release (2022-03-30)](release-notes/OpenHarmony-v3.1-release.md) + - [OpenHarmony 3.1.4 Release (2022-11-03)](release-notes/OpenHarmony-v3.1.4-release.md) - [OpenHarmony v3.1.3 Release (2022-09-30)](release-notes/OpenHarmony-v3.1.3-release.md) - [OpenHarmony v3.1.2 Release (2022-08-24)](release-notes/OpenHarmony-v3.1.2-release.md) - [OpenHarmony v3.1.1 Release (2022-05-31)](release-notes/OpenHarmony-v3.1.1-release.md) - [OpenHarmony v3.1 Beta (2021-12-31)](release-notes/OpenHarmony-v3.1-beta.md) - - [OpenHarmony v3.0 LTS (2021-09-30)](release-notes/OpenHarmony-v3.0-LTS.md) + - OpenHarmony v3.0 LTS (2021-09-30) and the latest patch version OpenHarmony v3.0.7 LTS (2022-12-05) + - [OpenHarmony v3.0 LTS (2021-09-30)](release-notes/OpenHarmony-v3.0-LTS.md) + - [OpenHarmony v3.0.7 LTS (2022-12-05)](release-notes/OpenHarmony-v3.0.7-LTS.md) - [OpenHarmony v3.0.6 LTS (2022-09-15)](release-notes/OpenHarmony-v3.0.6-LTS.md) - [OpenHarmony v3.0.5 LTS (2022-07-01)](release-notes/OpenHarmony-v3.0.5-LTS.md) - [OpenHarmony v3.0.3 LTS (2022-04-08)](release-notes/OpenHarmony-v3.0.3-LTS.md) - [OpenHarmony v3.0.2 LTS (2022-03-18)](release-notes/OpenHarmony-v3.0.2-LTS.md) - [OpenHarmony v3.0.1 LTS (2022-01-12)](release-notes/OpenHarmony-v3.0.1-LTS.md) - - OpenHarmony 2.x Releases - [OpenHarmony v2.2 beta2 (2021-08-04)](release-notes/OpenHarmony-v2.2-beta2.md) - [OpenHarmony 2.0 Canary (2021-06-01)](release-notes/OpenHarmony-2-0-Canary.md) - - OpenHarmony 1.x Releases - - [OpenHarmony 1.0 (2020-09-10)](release-notes/OpenHarmony-1-0.md) - [OpenHarmony v1.1.5 LTS (2022-08-24)](release-notes/OpenHarmony-v1.1.5-LTS.md) - [OpenHarmony v1.1.4 LTS (2022-02-11)](release-notes/OpenHarmony-v1-1-4-LTS.md) @@ -36,135 +39,320 @@ - [OpenHarmony v1.1.0 LTS (2021-04-01)](release-notes/OpenHarmony-1-1-0-LTS.md) - API Differences + - OpenHarmony 3.2 Release (Compared with 3.1 Release) + - JS API Differences + - [Ability framework](release-notes/api-change/v3.2-Release/js-apidiff-ability.md) + - [Accessibility subsystem](release-notes/api-change/v3.2-Release/js-apidiff-accessibility.md) + - [Account subsystem](release-notes/api-change/v3.2-Release/js-apidiff-account.md) + - [Application subsystem](release-notes/api-change/v3.2-Release/js-apidiff-application.md) + - [ArkUI development framework](release-notes/api-change/v3.2-Release/js-apidiff-arkui.md) + - [Power management subsystem](release-notes/api-change/v3.2-Release/js-apidiff-battery.md) + - [Bundle management framework](release-notes/api-change/v3.2-Release/js-apidiff-bundle.md) + - [Communication subsystem](release-notes/api-change/v3.2-Release/js-apidiff-communication.md) + - [Compiler and runtime subsystem](release-notes/api-change/v3.2-Release/js-apidiff-compiler-and-runtime.md) + - [Customization subsystem](release-notes/api-change/v3.2-Release/js-apidiff-customization.md) + - [DFX subsystem](release-notes/api-change/v3.2-Release/js-apidiff-dfx.md) + - [Distributed data management subsystem](release-notes/api-change/v3.2-Release/js-apidiff-distributed-data.md) + - [Distributed hardware subsystem](release-notes/api-change/v3.2-Release/js-apidiff-distributed-hardware.md) + - [File management subsystem](release-notes/api-change/v3.2-Release/js-apidiff-file-management.md) + - [Location subsystem](release-notes/api-change/v3.2-Release/js-apidiff-geolocation.md) + - [Globalization subsystem](release-notes/api-change/v3.2-Release/js-apidiff-global.md) + - [Graphic subsystem](release-notes/api-change/v3.2-Release/js-apidiff-graphic.md) + - [Misc services subsystem](release-notes/api-change/v3.2-Release/js-apidiff-misc.md) + - [MSDP subsystem](release-notes/api-change/v3.2-Release/js-apidiff-msdp.md) + - [Multimodal input subsystem](release-notes/api-change/v3.2-Release/js-apidiff-multi-modal-input.md) + - [Multimedia subsystem](release-notes/api-change/v3.2-Release/js-apidiff-multimedia.md) + - [Common event and notification subsystem](release-notes/api-change/v3.2-Release/js-apidiff-notification.md) + - [Resource scheduler subsystem](release-notes/api-change/v3.2-Release/js-apidiff-resource-scheduler.md) + - [Security subsystem](release-notes/api-change/v3.2-Release/js-apidiff-security.md) + - [Pan-sensor subsystem](release-notes/api-change/v3.2-Release/js-apidiff-sensor.md) + - [Startup subsystem](release-notes/api-change/v3.2-Release/js-apidiff-start-up.md) + - [Telephony subsystem](release-notes/api-change/v3.2-Release/js-apidiff-telephony.md) + - [Test subsystem](release-notes/api-change/v3.2-Release/js-apidiff-unitest.md) + - [Update subsystem](release-notes/api-change/v3.2-Release/js-apidiff-update.md) + - [USB subsystem](release-notes/api-change/v3.2-Release/js-apidiff-usb.md) + - [User IAM subsystem](release-notes/api-change/v3.2-Release/js-apidiff-user-iam.md) + - [Web subsystem](release-notes/api-change/v3.2-Release/js-apidiff-web.md) + - [Window manager subsystem](release-notes/api-change/v3.2-Release/js-apidiff-window.md) + - OpenHarmony 3.2 Release (Compared with 3.2 Beta5) + - JS API Differences + - [Ability framework](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-ability.md) + - [Account subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-account.md) + - [Application subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-application.md) + - [ArkUI development framework](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-arkui.md) + - [Power management subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-battery.md) + - [Bundle management framework](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-bundle.md) + - [Communication subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-communication.md) + - [Compiler and runtime subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-compiler-and-runtime.md) + - [DFX subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-dfx.md) + - [Distributed data management subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-distributed-data.md) + - [File management subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-file-management.md) + - [Misc services subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-misc.md) + - [Multimedia subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-multimedia.md) + - [Common event and notification subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-notification.md) + - [Resource scheduler subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-resource-scheduler.md) + - [Security subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-security.md) + - [Pan-sensor subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-sensor.md) + - [Startup subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-start-up.md) + - [Telephony subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-telephony.md) + - [Test subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-unitest.md) + - [Update subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-update.md) + - [USB subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-usb.md) + - [User IAM subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-user-iam.md) + - [Web subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-web.md) + - [Window manager subsystem](release-notes/api-change/Beta5-to-v3.2-Release/js-apidiff-window.md) + - Changelogs + - [Ability framework](release-notes/changelogs/v3.2-release/changelogs-ability.md) + - [ArkUI development framework](release-notes/changelogs/v3.2-release/changelogs-arkui.md) + - [Bundle management framework](release-notes/changelogs/v3.2-release/changelogs-bundlemanager.md) + - [Input Method Framework](release-notes/changelogs/v3.2-release/changelogs-imf.md) + - [Resource scheduler subsystem](release-notes/changelogs/v3.2-release/changelogs-resourceschedule.md) + - [Theme framework subsystem-screenlock](release-notes/changelogs/v3.2-release/changelogs-screenlock.md) + - [Telephony subsystem](release-notes/changelogs/v3.2-release/changelogs-telephony.md) + - [util subsystem](release-notes/changelogs/v3.2-release/changelogs-util.md) + - [Theme framework subsystem-wallpaper](release-notes/changelogs/v3.2-release/changelogs-wallpaper.md) + - [Web component](release-notes/changelogs/v3.2-release/changelogs-web.md) + - OpenHarmony 3.2 Beta5 + - JS API Differences + - [Ability framework](release-notes/api-change/v3.2-beta5/js-apidiff-ability.md) + - [Account subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-account.md) + - [Application subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-application.md) + - [ArkUI development framework](release-notes/api-change/v3.2-beta5/js-apidiff-arkui.md) + - [Power management subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-battery.md) + - [Bundle management framework](release-notes/api-change/v3.2-beta5/js-apidiff-bundle.md) + - [Communication subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-communication.md) + - [Compiler and runtime subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-compiler-and-runtime.md) + - [Distributed data management subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-distributed-data.md) + - [File management subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-file-management.md) + - [Location subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-geolocation.md) + - [Globalization subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-global.md) + - [Misc services subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-misc.md) + - [Multimedia subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-multimedia.md) + - [Common event and notification subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-notification.md) + - [Resource scheduler subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-resource-scheduler.md) + - [Security subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-security.md) + - [Startup subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-start-up.md) + - [Telephony subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-telephony.md) + - [Test subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-unitest.md) + - [User IAM subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-user-iam.md) + - [Web subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-web.md) + - [Window manager subsystem](release-notes/api-change/v3.2-beta5/js-apidiff-window.md) + - Changelogs + - [Ability framework](release-notes/changelogs/v3.2-beta5/changelogs-ability.md) + - [Account subsystem](release-notes/changelogs/v3.2-beta5/changelogs-account_os_account.md) + - [ArkUI development framework](release-notes/changelogs/v3.2-beta5/changelogs-arkui.md) + - [Multimedia subsystem-camera](release-notes/changelogs/v3.2-beta5/changelogs-camera-sync.md) + - [util subsystem-container](release-notes/changelogs/v3.2-beta5/changelogs-container.md) + - [Distributed data management subsystem](release-notes/changelogs/v3.2-beta5/changelogs-distributeddatamgr.md) + - [File management subsystem](release-notes/changelogs/v3.2-beta5/changelogs-filemanagement.md) + - [Input Method Framework](release-notes/changelogs/v3.2-beta5/changelogs-inputmethod-framworks.md) + - [File management subsystem-mediaLibrary](release-notes/changelogs/v3.2-beta5/changelogs-mediaLibrary.md) + - [Multimedia subsystem](release-notes/changelogs/v3.2-beta5/changelogs-multimedia.md) + - [Communication subsystem-NFC](release-notes/changelogs/v3.2-beta5/changelogs-nfc.md) + - [Common event and notification subsystem](release-notes/changelogs/v3.2-beta5/changelogs-notification.md) + - Location subsystem + - [ohos.geoLocationManager](release-notes/changelogs/v3.2-beta5/changelogs-ohos-geoLocationManager.md) + - [ohos.geolocation](release-notes/changelogs/v3.2-beta5/changelogs-ohos-geolocation.md) + - [system.geolocation](release-notes/changelogs/v3.2-beta5/changelogs-system-geolocation.md) + - [Uploading and downloading](release-notes/changelogs/v3.2-beta5/changelogs-request.md) + - [Resource scheduler subsystem](release-notes/changelogs/v3.2-beta5/changelogs-resourceschedule.md) + - [Security subsystem](release-notes/changelogs/v3.2-beta5/changelogs-security.md) + - [Telephony subsystem](release-notes/changelogs/v3.2-beta5/changelogs-telephony.md) + - [Time service](release-notes/changelogs/v3.2-beta5/changelogs-time.md) + - [util subsystem-URL](release-notes/changelogs/v3.2-beta5/changelogs-url.md) + - [User IAM subsystem](release-notes/changelogs/v3.2-beta5/changelogs-useriam.md) + - [Window manager subsystem](release-notes/changelogs/v3.2-beta5/changelogs-window.md) + - OpenHarmony 3.2 Beta4 + - JS API Differences + - [Ability framework](release-notes/api-change/v3.2-beta4/js-apidiff-ability.md) + - [Accessibility subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-accessibility.md) + - [Account subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-account.md) + - [Application subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-application.md) + - [ArkUI development framework](release-notes/api-change/v3.2-beta4/js-apidiff-arkui.md) + - [Power management subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-battery.md) + - [Bundle management framework](release-notes/api-change/v3.2-beta4/js-apidiff-bundle.md) + - [Communication subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-communication.md) + - [Compiler and runtime subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-compiler-and-runtime.md) + - [Customization subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-customization.md) + - [DFX subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-dfx.md) + - [Distributed data management subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-distributed-data.md) + - [Distributed hardware subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-distributed-hardware.md) + - [File management subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-file-management.md) + - [Location subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-geolocation.md) + - [Globalization subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-global.md) + - [Misc services subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-misc.md) + - [MSDP subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-msdp.md) + - [Multimodal input subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-multi-modal-input.md) + - [Multimedia subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-multimedia.md) + - [Common event and notification subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-notification.md) + - [Resource scheduler subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-resource-scheduler.md) + - [Security subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-security.md) + - [Pan-sensor subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-sensor.md) + - [Startup subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-start-up.md) + - [Telephony subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-telephony.md) + - [Test subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-unitest.md) + - [Update subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-update.md) + - [USB subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-usb.md) + - [User IAM subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-user-iam.md) + - [Web subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-web.md) + - [Window manager subsystem](release-notes/api-change/v3.2-beta4/js-apidiff-window.md) + - Changelogs + - [Ability framework](release-notes/changelogs/v3.2-beta4/changelogs-ability.md) + - [Account subsystem](release-notes/changelogs/v3.2-beta4/changelogs-account_os_account.md) + - [ArkUI development framework](release-notes/changelogs/v3.2-beta4/changelogs-arkui.md) + - [Multimedia subsystem-camera](release-notes/changelogs/v3.2-beta4/changelogs-camera.md) + - [Device management subsystem](release-notes/changelogs/v3.2-beta4/changelogs-device-manager.md) + - [USB subsystem](release-notes/changelogs/v3.2-beta4/changelogs-device-usb.md) + - [Distributed scheduler](release-notes/changelogs/v3.2-beta4/changelogs-dmsfwk.md) + - [DSoftBus](release-notes/changelogs/v3.2-beta4/changelogs-dsoftbus.md) + - [Customization subsystem](release-notes/changelogs/v3.2-beta4/changelogs-enterprise_device_management.md) + - [File management subsystem](release-notes/changelogs/v3.2-beta4/changelogs-filemanagement.md) + - [Location subsystem](release-notes/changelogs/v3.2-beta4/changelogs-geolocation.md) + - [Globalization subsystem](release-notes/changelogs/v3.2-beta4/changelogs-global.md) + - [Input Method Framework](release-notes/changelogs/v3.2-beta4/changelogs-inputmethod-framworks.md) + - [Multimedia subsystem](release-notes/changelogs/v3.2-beta4/changelogs-multimedia.md) + - [Multimodal input subsystem](release-notes/changelogs/v3.2-beta4/changelogs-multimodalinput.md) + - [Common event and notification subsystem](release-notes/changelogs/v3.2-beta4/changelogs-notification.md) + - [Power management subsystem](release-notes/changelogs/v3.2-beta4/changelogs-power.md) + - [Uploading and downloading](release-notes/changelogs/v3.2-beta4/changelogs-request.md) + - [Resource manager](release-notes/changelogs/v3.2-beta4/changelogs-resource-manager.md) + - [Resource scheduler subsystem](release-notes/changelogs/v3.2-beta4/changelogs-resourceschedule.md) + - [Telephony subsystem](release-notes/changelogs/v3.2-beta4/changelogs-telephony.md) + - [Test subsystem](release-notes/changelogs/v3.2-beta4/changelogs-testfwk_arkxtest.md) + - [Theme](release-notes/changelogs/v3.2-beta4/changelogs-theme.md) + - [User IAM subsystem](release-notes/changelogs/v3.2-beta4/changelogs-useriam.md) + - [Ability framework-WantAgent](release-notes/changelogs/v3.2-beta4/changelogs-wantAgent.md) + - [Web subsystem](release-notes/changelogs/v3.2-beta4/changelogs-web.md) + - [Communication subsystem-WiFf](release-notes/changelogs/v3.2-beta4/changelogs-wifi.md) - OpenHarmony 3.2 Beta3 - JS API Differences - - [Ability framework](release-notes/api-diff/v3.2-beta3/js-apidiff-ability.md) - - [Accessibility subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-accessibility.md) - - [Account subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-account.md) - - [ArkUI development framework](release-notes/api-diff/v3.2-beta3/js-apidiff-arkui.md) - - [Power management subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-battery.md) - - [Bundle management framework](release-notes/api-diff/v3.2-beta3/js-apidiff-bundle.md) - - [Communication subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-communicate.md) - - [Compiler and runtime subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-compiler-and-runtime.md) - - [DFX subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-dfx.md) - - [Distributed data management subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-distributed-data.md) - - [Distributed hardware subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-distributed-hardware.md) - - [Common event and notification subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-event-and-notification.md) - - [File management subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-file-management.md) - - [Globalization subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-global.md) - - [Graphics subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-graphic.md) - - [Misc services subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-misc.md) - - [Multimodal input subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-multi-modal-input.md) - - [Multimedia subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-multimedia.md) - - [Resource scheduler subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-resource-scheduler.md) - - [Security subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-security.md) - - [Pan-sensor subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-sensor.md) - - [DSoftBus subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-soft-bus.md) - - [Telephony subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-telephony.md) - - [Test subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-unitest.md) - - [Update subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-update.md) - - [Web subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-web.md) - - [Window manager subsystem](release-notes/api-diff/v3.2-beta3/js-apidiff-window.md) - - [Updates (OpenHarmony 3.2 Beta2 -> OpenHarmony 3.2 Beta3)](release-notes/changelogs/v3.2-beta3/changelog-v3.2-beta3.md) + - [Ability framework](release-notes/api-change/v3.2-beta3/js-apidiff-ability.md) + - [Accessibility subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-accessibility.md) + - [Account subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-account.md) + - [ArkUI development framework](release-notes/api-change/v3.2-beta3/js-apidiff-arkui.md) + - [Power management subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-battery.md) + - [Bundle management framework](release-notes/api-change/v3.2-beta3/js-apidiff-bundle.md) + - [Communication subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-communicate.md) + - [Compiler and runtime subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-compiler-and-runtime.md) + - [DFX subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-dfx.md) + - [Distributed data management subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-distributed-data.md) + - [Distributed hardware subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-distributed-hardware.md) + - [Common event and notification subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-event-and-notification.md) + - [File management subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-file-management.md) + - [Globalization subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-global.md) + - [Graphics subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-graphic.md) + - [Misc services subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-misc.md) + - [Multimodal input subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-multi-modal-input.md) + - [Multimedia subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-multimedia.md) + - [Resource scheduler subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-resource-scheduler.md) + - [Security subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-security.md) + - [Pan-sensor subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-sensor.md) + - [DSoftBus subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-soft-bus.md) + - [Telephony subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-telephony.md) + - [Test subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-unitest.md) + - [Update subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-update.md) + - [Web subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-web.md) + - [Window manager subsystem](release-notes/api-change/v3.2-beta3/js-apidiff-window.md) + - [Updates (OpenHarmony 3.2 Beta2 -> OpenHarmony 3.2 Beta3)](release-notes/api-change/v3.2-beta3/changelog-v3.2-beta3.md) - OpenHarmony 3.2 Beta2 - JS API Differences - - [Ability framework](release-notes/api-diff/v3.2-beta2/js-apidiff-ability.md) - - [Accessibility subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-accessibility.md) - - [Account subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-account.md) - - [ArkUI development framework](release-notes/api-diff/v3.2-beta2/js-apidiff-arkui.md) - - [Bundle management framework](release-notes/api-diff/v3.2-beta2/js-apidiff-bundle.md) - - [Communication subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-communicate.md) - - [Compiler and runtime subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-compiler-and-runtime.md) - - [DFX subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-dfx.md) - - [Distributed data management subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-distributed-data.md) - - [Common event and notification subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-event-and-notification.md) - - [File management subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-file-management.md) - - [Location subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-geolocation.md) - - [Globalization subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-global.md) - - [Graphics subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-graphic.md) - - [Misc services subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-misc.md) - - [Multimodal input subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-multi-modal-input.md) - - [Multimedia subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-multimedia.md) - - [Resource scheduler subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-resource-scheduler.md) - - [Security subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-security.md) - - [Pan-sensor subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-sensor.md) - - [DSoftBus subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-soft-bus.md) - - [Test subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-unitest.md) - - [Update subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-update.md) - - [USB subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-usb.md) - - [User IAM subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-user-authentication.md) - - [Web subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-web.md) - - [Window manager subsystem](release-notes/api-diff/v3.2-beta2/js-apidiff-window.md) + - [Ability framework](release-notes/api-change/v3.2-beta2/js-apidiff-ability.md) + - [Accessibility subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-accessibility.md) + - [Account subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-account.md) + - [ArkUI development framework](release-notes/api-change/v3.2-beta2/js-apidiff-arkui.md) + - [Bundle management framework](release-notes/api-change/v3.2-beta2/js-apidiff-bundle.md) + - [Communication subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-communicate.md) + - [Compiler and runtime subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-compiler-and-runtime.md) + - [DFX subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-dfx.md) + - [Distributed data management subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-distributed-data.md) + - [Common event and notification subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-event-and-notification.md) + - [File management subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-file-management.md) + - [Location subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-geolocation.md) + - [Globalization subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-global.md) + - [Graphics subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-graphic.md) + - [Misc services subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-misc.md) + - [Multimodal input subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-multi-modal-input.md) + - [Multimedia subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-multimedia.md) + - [Resource scheduler subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-resource-scheduler.md) + - [Security subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-security.md) + - [Pan-sensor subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-sensor.md) + - [DSoftBus subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-soft-bus.md) + - [Test subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-unitest.md) + - [Update subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-update.md) + - [USB subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-usb.md) + - [User IAM subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-user-authentication.md) + - [Web subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-web.md) + - [Window manager subsystem](release-notes/api-change/v3.2-beta2/js-apidiff-window.md) - Changelog - - [Updates (OpenHarmony 3.2 Beta1 -> OpenHarmony 3.2 Beta2)](release-notes/changelogs/v3.2-beta2/changelog-v3.2-beta2.md) - - [Adaptation Guide for the Application Sandbox](release-notes/changelogs/v3.2-beta2/application-sandbox-adaptation-guide.md) + - [Updates (OpenHarmony 3.2 Beta1 -> OpenHarmony 3.2 Beta2)](release-notes/api-change/v3.2-beta2/changelog-v3.2-beta2.md) + - [Adaptation Guide for the Application Sandbox](release-notes/api-change/v3.2-beta2/application-sandbox-adaptation-guide.md) - OpenHarmony 3.2 Beta1 - JS API Differences - - [Ability framework](release-notes/api-diff/v3.2-beta1/js-apidiff-ability.md) - - [ArkUI development framework](release-notes/api-diff/v3.2-beta1/js-apidiff-arkui.md) - - [Power management subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-battery.md) - - [Bundle management framework](release-notes/api-diff/v3.2-beta1/js-apidiff-bundle.md) - - [Communication subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-communicate.md) - - [DFX subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-dfx.md) - - [Distributed data management subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-distributed-data.md) - - [Common event and notification subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-event-and-notification.md) - - [File management subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-file-management.md) - - [Globalization subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-global.md) - - [Startup subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-init.md) - - [Misc services subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-misc.md) - - [Multimodal input subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-multi-modal-input.md) - - [Multimedia subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-multimedia.md) - - [Distributed scheduler subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-resource-scheduler.md) - - [Test subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-unitest.md) - - [Web subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-web.md) - - [Window manager subsystem](release-notes/api-diff/v3.2-beta1/js-apidiff-window.md) - - [Native API Differences](release-notes/api-diff/v3.2-beta1/native-apidiff-v3.2-beta.md) + - [Ability framework](release-notes/api-change/v3.2-beta1/js-apidiff-ability.md) + - [ArkUI development framework](release-notes/api-change/v3.2-beta1/js-apidiff-arkui.md) + - [Power management subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-battery.md) + - [Bundle management framework](release-notes/api-change/v3.2-beta1/js-apidiff-bundle.md) + - [Communication subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-communicate.md) + - [DFX subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-dfx.md) + - [Distributed data management subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-distributed-data.md) + - [Common event and notification subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-event-and-notification.md) + - [File management subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-file-management.md) + - [Globalization subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-global.md) + - [Startup subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-init.md) + - [Misc services subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-misc.md) + - [Multimodal input subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-multi-modal-input.md) + - [Multimedia subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-multimedia.md) + - [Distributed scheduler subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-resource-scheduler.md) + - [Test subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-unitest.md) + - [Web subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-web.md) + - [Window manager subsystem](release-notes/api-change/v3.2-beta1/js-apidiff-window.md) + - [Native API Differences](release-notes/api-change/v3.2-beta1/native-apidiff-v3.2-beta.md) - OpenHarmony 3.1 Release - JS API Differences (API Version 8) - - [Ability framework](release-notes/api-diff/v3.1-Release/js-apidiff-ability.md) - - [Accessibility subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-accessibility.md) - - [Account subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-account.md) - - [ArkUI development framework](release-notes/api-diff/v3.1-Release/js-apidiff-ace.md) - - [Power management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-battery.md) - - [Bundle management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-bundle.md) - - [Communication subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-communicate.md) - - [Compiler and Runtime subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-compiler-and-runtime.md) - - [DFX subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-dfx.md) - - [Distributed data management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-distributed-data.md) - - [Distributed hardware subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-distributed-hardware.md) - - [Common event and notification subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-event-and-notification.md) - - [File management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-file-management.md) - - [Location subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-geolocation.md) - - [Globalization subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-global.md) - - [Graphics subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-graphic.md) - - [Misc services subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-misc.md) - - [Multimodal input subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-multi-modal-input.md) - - [Multimedia subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-multimedia.md) - - [Network management subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-network.md) - - [Distributed scheduler subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-resource-scheduler.md) - - [Security subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-security.md) - - [Pan-sensor subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-sensor.md) - - [Application framework subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-settings.md) - - [DSoftBus subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-soft-bus.md) - - [Telephony subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-telephony.md) - - [USB subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-usb.md) - - [User IAM subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-user-authentication.md) - - [Window manager subsystem](release-notes/api-diff/v3.1-Release/js-apidiff-window.md) - - [Native API Differences](release-notes/api-diff/v3.1-Release/native-apidiff-v3.1-release.md) - - [Updates (OpenHarmony 3.1 Beta -> OpenHarmony 3.1 Release)](release-notes/changelogs/v3.1-Release/changelog-v3.1-release.md) + - [Ability framework](release-notes/api-change/v3.1-Release/js-apidiff-ability.md) + - [Accessibility subsystem](release-notes/api-change/v3.1-Release/js-apidiff-accessibility.md) + - [Account subsystem](release-notes/api-change/v3.1-Release/js-apidiff-account.md) + - [ArkUI development framework](release-notes/api-change/v3.1-Release/js-apidiff-ace.md) + - [Power management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-battery.md) + - [Bundle management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-bundle.md) + - [Communication subsystem](release-notes/api-change/v3.1-Release/js-apidiff-communicate.md) + - [Compiler and Runtime subsystem](release-notes/api-change/v3.1-Release/js-apidiff-compiler-and-runtime.md) + - [DFX subsystem](release-notes/api-change/v3.1-Release/js-apidiff-dfx.md) + - [Distributed data management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-distributed-data.md) + - [Distributed hardware subsystem](release-notes/api-change/v3.1-Release/js-apidiff-distributed-hardware.md) + - [Common event and notification subsystem](release-notes/api-change/v3.1-Release/js-apidiff-event-and-notification.md) + - [File management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-file-management.md) + - [Location subsystem](release-notes/api-change/v3.1-Release/js-apidiff-geolocation.md) + - [Globalization subsystem](release-notes/api-change/v3.1-Release/js-apidiff-global.md) + - [Graphics subsystem](release-notes/api-change/v3.1-Release/js-apidiff-graphic.md) + - [Misc services subsystem](release-notes/api-change/v3.1-Release/js-apidiff-misc.md) + - [Multimodal input subsystem](release-notes/api-change/v3.1-Release/js-apidiff-multi-modal-input.md) + - [Multimedia subsystem](release-notes/api-change/v3.1-Release/js-apidiff-multimedia.md) + - [Network management subsystem](release-notes/api-change/v3.1-Release/js-apidiff-network.md) + - [Distributed scheduler subsystem](release-notes/api-change/v3.1-Release/js-apidiff-resource-scheduler.md) + - [Security subsystem](release-notes/api-change/v3.1-Release/js-apidiff-security.md) + - [Pan-sensor subsystem](release-notes/api-change/v3.1-Release/js-apidiff-sensor.md) + - [Application framework subsystem](release-notes/api-change/v3.1-Release/js-apidiff-settings.md) + - [DSoftBus subsystem](release-notes/api-change/v3.1-Release/js-apidiff-soft-bus.md) + - [Telephony subsystem](release-notes/api-change/v3.1-Release/js-apidiff-telephony.md) + - [USB subsystem](release-notes/api-change/v3.1-Release/js-apidiff-usb.md) + - [User IAM subsystem](release-notes/api-change/v3.1-Release/js-apidiff-user-authentication.md) + - [Window manager subsystem](release-notes/api-change/v3.1-Release/js-apidiff-window.md) + - [Native API Differences](release-notes/api-change/v3.1-Release/native-apidiff-v3.1-release.md) + - [Updates (OpenHarmony 3.1 Beta -> OpenHarmony 3.1 Release)](release-notes/api-change/v3.1-Release/changelog-v3.1-release.md) - OpenHarmony 3.1 Beta - - [JS API Differences](release-notes/api-diff/v3.1-beta/js-apidiff-v3.1-beta.md) - - [Native API Differences](release-notes/api-diff/v3.1-beta/native-apidiff-v3.1-beta.md) - - [Updates (OpenHarmony 3.0 -> OpenHarmony 3.1 Beta)](release-notes/api-diff/v3.1-beta/changelog-v3.1-beta.md) + - [JS API Differences](release-notes/api-change/v3.1-beta/js-apidiff-v3.1-beta.md) + - [Native API Differences](release-notes/api-change/v3.1-beta/native-apidiff-v3.1-beta.md) + - [Updates (OpenHarmony 3.0 -> OpenHarmony 3.1 Beta)](release-notes/api-change/v3.1-beta/changelog-v3.1-beta.md) - OpenHarmony 3.0 LTS - - [JS API Differences](release-notes/api-diff/v3.0-LTS/js-apidiff-v3.0-lts.md) + - [JS API Differences](release-notes/api-change/v3.0-LTS/js-apidiff-v3.0-lts.md) - OpenHarmony v2.2 Beta2 - - [JS API Differences](release-notes/api-diff/v2.2-beta2/js-apidiff-v2.2-beta2.md) - - [Native API Differences](release-notes/api-diff/v2.2-beta2/native-apidiff-v2.2-beta2.md) + - [JS API Differences](release-notes/api-change/v2.2-beta2/js-apidiff-v2.2-beta2.md) + - [Native API Differences](release-notes/api-change/v2.2-beta2/native-apidiff-v2.2-beta2.md) - OpenHarmony Third-Party Components - [OpenHarmony Third-Party Components](third-party-components/third-party-components-introduction.md) - - [Using OpenHarmony JS and TS Third-Party Components](third-party-components/npm-third-party-guide.md) + - [Using OpenHarmony JS and TS Third-Party Components](third-party-components/ohpm-third-party-guide.md) - Contribution - [How to Contribute](contribute/how-to-contribute.md)