harmony 鸿蒙Multi-HAP Development, Debugging, Release, and Deployment Process

  • 2023-02-03
  • 浏览 (540)

Multi-HAP Development, Debugging, Release, and Deployment Process

Below is the process of developing, debugging, releasing, and deploying multiple HAP files.

Figure 1 Process of developing, debugging, releasing, and deploying multiple HAP files hap-release

Development

You can use DevEco Studio to create multiple modules as needed and develop services in respective modules.

Debugging

After building code into one or more HAP files and installing or updating these HAP files, you can debug them. You can leverage a single set of code and files to build multiple target editions for different audiences, deployment environments, operating environments, and more. For details, see Customizing Multi-Target and Multi-Product Builds.

You can debug HAP files using the methods: * Using DevEco Studio for debugging

Follow the instructions in Debugging Configuration.

  • Using hdc (which can be obtained in the toolchains directory of the OpenHarmony SDK) for debugging

Before debugging HAP files, install or update them using either of the methods:

  1. Use hdc to install and update the HAP files.

    When specifying the HAP files, use the paths of the files on the operating system, for example, Windows.

    // Installation and update: Multiple file paths can be specified.
    hdc install C:\entry.hap C:\feature.hap
    // The execution result is as follows:
    install bundle successfully.
    // Uninstall
    hdc uninstall com.example.myapplication
    // The execution result is as follows:
    uninstall bundle successfully.
    
  2. Run the hdc shell command, and then use the Bundle Manager (bm) tool to install and update the HAP files.

    When specifying the HAP files, use the paths of the files on the real device. The sample code is as follows:

    // Run the hdc shell command before using the bm tool.
    hdc shell
    // Installation and update: Multiple file paths can be specified.
    bm install -p /data/app/entry.hap /data/app/feature.hap
    // The execution result is as follows:
    install bundle successfully.
    // Uninstall
    bm uninstall -n com.example.myapplication
    // The execution result is as follows:
    uninstall bundle successfully.
    

    After the HAP files are installed or updated, you can debug them by following the instructions in Ability Assistant.

Release

When your application package meets the release requirements, you can package and build it into an App Pack and release it to the application market on the cloud. The application market verifies the signature of the App Pack. If the signature verification is successful, the application market obtains the HAP files from the App Pack, signs them, and distributes the signed HAP files.

Deployment

The application market on the cloud distributes the applications to application market clients. These applications can contain one or more HAP files. After the user selects an application to download, the application market downloads all the HAP files contained in this application whose deliveryWithInstall field is set to true.

Installation on a Device

After the download is complete, the application market client calls the installation API of the bundle manager service in the system to install the downloaded HAP files. The bundle manager service deploys HAP files by application in the specified directory to complete the application installation.

你可能感兴趣的鸿蒙文章

harmony 鸿蒙Quick Start

harmony 鸿蒙app.json5 Configuration File

harmony 鸿蒙Internal Structure of the app Tag

harmony 鸿蒙Application Configuration File Overview (FA Model)

harmony 鸿蒙Application Configuration File Overview (Stage Model)

harmony 鸿蒙Application Installation and Uninstallation Process

harmony 鸿蒙Application Package Overview

harmony 鸿蒙Application Package Structure in FA Model

harmony 鸿蒙Application Package Structure in Stage Model

harmony 鸿蒙Application Package Update Process

0  赞