harmony 鸿蒙module.json5 Configuration File

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

module.json5 Configuration File

This topic gives an overview of the module.json5 configuration file. To start with, let’s go through an example of what this file contains.

{
  "module": {
    "name": "entry",
    "type": "entry",
    "description": "$string:module_desc",
    "mainElement": "EntryAbility",
    "deviceTypes": [
      "default",
      "tablet"
    ],
    "deliveryWithInstall": true,
    "installationFree": false,
    "pages": "$profile:main_pages",
    "virtualMachine": "ark",
    "metadata": [
      {
        "name": "string",
        "value": "string",
        "resource": "$profile:distributionFilter_config"
      }
    ],
    "abilities": [
      {
        "name": "EntryAbility",
        "srcEntry": "./ets/entryability/EntryAbility.ets",
        "description": "$string:EntryAbility_desc",
        "icon": "$media:icon",
        "label": "$string:EntryAbility_label",
        "startWindowIcon": "$media:icon",
        "startWindowBackground": "$color:start_window_background",
        "exported": true,
        "skills": [
          {
            "entities": [
              "entity.system.home"
            ],
            "actions": [
              "ohos.want.action.home"
            ]
          }
        ]
      }
    ],
    "requestPermissions": [
      {
        "name": "ohos.abilitydemo.permission.PROVIDER",
        "reason": "$string:reason",
        "usedScene": {
          "abilities": [
            "FormAbility"
          ],
          "when": "inuse"
        }
      }
    ]
  },
  "targetModuleName": "feature",
  "targetPriority": 50
}

As shown above, the module.json5 file contains several tags.

Table 1 Tags in the module.json5 file

Name Description Data Type Initial Value Allowed
name Name of the module. The value is a string with a maximum of 31 bytes and must be unique in the entire application. During application upgrade, this name can be changed. If it is changed, migration of module-related directories is required for the application. You can use the file operation API for migration. String No
type Type of the module. The options are as follows:
- entry: main module of the application.
- feature: dynamic feature module of the application.
- har: static shared module.
- shared: dynamic shared module.
String No
srcEntry Code path corresponding to the module. The value is a string with a maximum of 127 bytes. String Yes (initial value: left empty)
description Description of the module. The value is a string with a maximum of 255 bytes or a string resource index. String Yes (initial value: left empty)
process Process name of the current module. The value is a string with a maximum of 31 bytes. If process is configured under HAP, all UIAbility, DataShareExtensionAbility, and ServiceExtensionAbility components of the application run in the specified process.
NOTE
This tag applies only to system applications and does not take effect for third-party applications.
String Yes (initial value: value of bundleName under app in the app.json5 file)
mainElement Name of the entry UIAbility or ExtensionAbility of the module. The value is a string with a maximum of 255 bytes. String Yes (initial value: left empty)
deviceTypes Type of the device on which the module can run. String array No (can be left empty)
deliveryWithInstall Whether the HAP file of the module will be installed when the user installs the application.
- true: The HAP file will be installed when the user installs the application.
- false: The HAP file will not be installed when the user installs the application.
Boolean No
installationFree Whether the module supports the installation-free feature.
- true: The module supports the installation-free feature and meets installation-free constraints.
- false: The module does not support the installation-free feature.
NOTE
If this tag is set to true for an entry-type module, it must also be set to true for feature-type modules of the same application.
If this tag is set to false for an entry-type module, it can be set to true or false for feature-type modules of the same application based on service requirements.
Boolean No
virtualMachine Type of the target virtual machine (VM) where the module runs. It is used for cloud distribution, such as distribution by the application market and distribution center.
If the target VM type is ArkTS engine, the value is ark+version number.
String Yes (initial value: automatically inserted when DevEco Studio builds the HAP file)
pages Profile that represents information about each page in the current module. The value can contain a maximum of 255 bytes. String No in the UIAbility scenario
metadata Custom metadata of the module. The setting is valid only for the current module, UIAbility, or ExtensionAbility. Object array Yes (initial value: left empty)
abilities UIAbility configuration of the module, which is valid only for the current UIAbility component. Object Yes (initial value: left empty)
extensionAbilities ExtensionAbility configuration of the module, which is valid only for the current ExtensionAbility component. Object Yes (initial value: left empty)
requestPermissions A set of permissions that the application needs to request from the system for running correctly. Object Yes (initial value: left empty)
testRunner Test runner configuration of the module. Object Yes (initial value: left empty)
atomicService Atomic service configuration. Object Yes (initial value: left empty)
dependencies List of shared libraries on which the current module depends during running. Object array Yes (initial value: left empty)
targetModuleName Target module of the bundle. The value is a string with a maximum of 31 bytes. It must be unique in the entire application. String Yes (if the initial value is used, the target module is not a module with the overlay feature)
targetPriority Priority of the module. When targetModuleName is set, the module is a module with the overlay feature. The value ranges from 1 to 100. Number Yes (initial value: 1)
proxyData List of data proxies provided by the module. Object array Yes (initial value: left empty)
isolationMode Multi-process configuration of the module. The options are as follows:
- nonisolationFirst: The module preferentially runs in a non-independent process.
- isolationFirst: The module preferentially runs in an independent process.
- isolationOnly: The module runs only in an independent process.
- nonisolationOnly: The module runs only in non-independent processes.
String Yes (initial value: nonisolationFirst)
generateBuildHash Whether the hash value of the HAP or HSP file is generated by the packaging tool. The hash value (if any) is used to determine whether the application needs to be updated when the system is updated in OTA mode but the versionCode value of the application remains unchanged.
This tag is enabled only when the generateBuildHash tag in the app.json5 file is false.
NOTE
This tag applies only to system applications.
Boolean Yes (initial value: false)
compressNativeLibs Whether the libs libraries are packaged in the HAP file after being compressed.
- true: The libs libraries are packaged in the HAP file after being compressed.
- false: The libs libraries are stored without being compressed and will be directly loaded during the installation of the HAP file.
Boolean Yes (initial value: true)
libIsolation Whether to save the .so files of the current HAP to a separate folder (named after the module) in the libs directory. This is intended to avoid .so file conflicts between HAPs.
- true: The .so files of the current HAP are stored in a separate folder (named after the module) in the libs directory.
- false: The .so files of the current HAP are directly stored in the libs directory.
Boolean Yes (initial value: false)

deviceTypes

Table 2 deviceTypes

Device Type Value Description
Tablet tablet -
Smart TV tv -
Smart watch wearable Watch that provides call features.
Head unit car -
Default device default OpenHarmony device that provides full access to system capabilities.

Example of the deviceTypes structure:

{
  "module": {
    "name": "myHapName",
    "type": "feature",
    "deviceTypes" : [
       "tablet"
    ]
  }
}

pages

The pages tag is a profile that represents information about specified pages.

{
  "module": {
    // ...
    "pages": "$profile:main_pages", // Configured through the resource file in the profile
  }
}

Define the main_pages.json file under resources/base/profile in the development view. The file name (main_pages in this example) can be customized, but must be consistent with the information specified by the pages tag. The file lists the page information of the current application, including the route information and the window-related configuration.

Table 3 Tags in the pages configuration file

Name Description Data Type Initial Value Allowed
src Route information about all pages in the JavaScript module, including the page path and page name. The value is an array, each element of which represents a page and the first element represents the home page. String array No
window Window-related configuration. Object Yes (initial value: left empty)

Table 4 window tag in the pages configuration file

Name Description Data Type Initial Value Allowed
designWidth Baseline width for page design. The size of an element is scaled by the actual device width. Number Yes (initial value: 720px)
autoDesignWidth Whether to automatically calculate the baseline width for page design. If it is set to true, the designWidth attribute becomes invalid. The baseline width is calculated based on the device width and screen density. Boolean Yes (initial value: false)
{
  "src": [
    "pages/index/mainPage",
    "pages/second/payment",
    "pages/third/shopping_cart",
    "pages/four/owner"
  ],
  "window": {
    "designWidth": 720,
    "autoDesignWidth": false
  }
}

metadata

The metadata tag represents the custom metadata of the HAP file. The tag value is an array and contains three subtags: name, value, and resource.

Table 5 metadata

Name Description Data Type Initial Value Allowed
name Name of the data item. The value is a string with a maximum of 255 bytes. String Yes (initial value: left empty)
value Value of the data item. The value is a string with a maximum of 255 bytes. String Yes (initial value: left empty)
resource Custom data format. The value is a resource index that identifies the data. It contains a maximum of 255 bytes. String Yes (initial value: left empty)
{
  "module": {
    "metadata": [{
      "name": "module_metadata",
      "value": "a test demo for module metadata",
      "resource": "$profile:shortcuts_config"
    }],

    "abilities": [{
      "metadata": [{
        "name": "ability_metadata",
        "value": "a test demo for ability",
        "resource": "$profile:config_file"
      },
      {
        "name": "ability_metadata_2",
        "value": "a string test",
        "resource": "$profile:config_file"
      }],
    }],

    "extensionAbilities": [{
      "metadata": [{
        "name": "extensionAbility_metadata",
        "value": "a test for extensionAbility",
        "resource": "$profile:config_file"
      },
      {
        "name": "extensionAbility_metadata_2",
        "value": "a string test",
        "resource": "$profile:config_file"
      }],
    }]
  }
}

abilities

The abilities tag represents the UIAbility configuration of the module, which is valid only for the current UIAbility component.

Table 6 abilities

Name Description Data Type Initial Value Allowed
name Name of the UIAbility component, which must be unique in the entire application. The value is a string with a maximum of 127 bytes. Chinese characters are not allowed. String No
srcEntry Code path of the entry UIAbility component. The value is a string with a maximum of 127 bytes. String No
launchType Launch type of the UIAbility component. The options are as follows:
- multiton: A new UIAbility instance is created each time the UIAbility component is started.
- singleton: A new UIAbility instance is created only when the UIAbility component is started for the first time.
- specified: You can determine whether to create a new UIAbility instance when the application is running.
String Yes (initial value: “singleton”)
description Description of the UIAbility component. The value is a string with a maximum of 255 bytes or a resource index to the description in multiple languages. String Yes (initial value: left empty)
icon Icon of the UIAbility component. The value is an icon resource index. String Yes (initial value: left empty)
If UIAbility is set to MainElement, this attribute is mandatory.
label Name of the UIAbility component displayed to users. The value is a string resource index. String Yes (initial value: left empty)
If UIAbility is set to MainElement, this attribute is mandatory.
permissions Permissions required for another application to access the UIAbility component.
The value is generally in the reverse domain name notation and contains a maximum of 255 bytes. It is an array of predefined permission names.
String array Yes (initial value: left empty)
metadata Metadata information of the UIAbility component. Object array Yes (initial value: left empty)
exported Whether the UIAbility component can be called by other applications.
- true: The UIAbility component can be called by other applications.
- false: The UIAbility component cannot be called by other applications, not even by aa commands.
Boolean Yes (initial value: false)
continuable Whether the UIAbility component can be migrated.
- true: The UIAbility component can be migrated.
- false: The UIAbility component cannot be migrated.
Boolean Yes (initial value: false)
skills Feature set of wants that can be received by the current UIAbility or ExtensionAbility component.
Configuration rules:
- For HAPs of the entry type, you can configure multiple skills attributes with the entry capability for an OpenHarmony application. (A skills attribute with the entry capability is the one that has ohos.want.action.home and entity.system.home configured.)
- For HAPs of the feature type, you can configure skills attributes with the entry capability for an OpenHarmony application, but not for an OpenHarmony service.
Object array Yes (initial value: left empty)
backgroundModes Continuous tasks of the UIAbility component.
Continuous tasks are classified into the following types:
- dataTransfer: service for downloading, backing up, sharing, or transferring data from the network or peer devices.
- audioPlayback: audio playback service.
- audioRecording: audio recording service.
- location: location and navigation services.
- bluetoothInteraction: Bluetooth scanning, connection, and transmission services (wearables).
- multiDeviceConnection: multi-device interconnection service.
- wifiInteraction: Wi-Fi scanning, connection, and transmission services (as used in the Multi-screen Collaboration and clone features)
- voip: voice/video call and VoIP services.
- taskKeeping: computing service.
String array Yes (initial value: left empty)
startWindowIcon Index to the icon file of the UIAbility component startup page. Example: $media:icon.
The value is a string with a maximum of 255 bytes.
String No
startWindowBackground Index to the background color resource file of the UIAbility component startup page. Example: $color:red.
The value is a string with a maximum of 255 bytes.
String No
removeMissionAfterTerminate Whether to remove the relevant task from the task list after the UIAbility component is destroyed.
- true: Remove the relevant task from the task list after the UIAbility component is destroyed.
- false: Do not remove the relevant task from the task list after the UIAbility component is destroyed.
Boolean Yes (initial value: false)
orientation Orientation of the UIAbility component when it is started. The options are as follows:
- unspecified: automatically determined by the system.
- landscape: landscape mode.
- portrait: portrait mode.
- landscape_inverted: inverted landscape mode.
- portrait_inverted: inverted portrait mode.
- auto_rotation: determined by the sensor.
- auto_rotation_landscape: determined by the sensor in the horizontal direction, including landscape and inverted landscape modes.
- auto_rotation_portrait: determined by the sensor in the vertical direction, including portrait and inverted portrait modes.
- auto_rotation_restricted: determined by the sensor when the sensor switch is enabled.
- auto_rotation_landscape_restricted: determined by the sensor in the horizontal direction, including landscape and inverted landscape modes, when the sensor switch is enabled.
- auto_rotation_portrait_restricted: determined by the sensor in the vertical direction, including portrait and inverted portrait modes, when the sensor switch is enabled.
- locked: auto rotation disabled.
String Yes (initial value: “unspecified”)
supportWindowMode Window mode supported by the UIAbility component. The options are as follows:
- fullscreen: full-screen mode.
- split: split-screen mode.
- floating: floating window mode.
String array Yes (initial value:
[“fullscreen”, “split”, “floating”])
priority Priority of the UIAbility component. In the case of implicit query, UIAbility components with a higher priority are at the higher place of the returned list. The value is an integer ranging from 0 to 10. The greater the value, the higher the priority.
NOTE
This attribute applies only to system applications and does not take effect for third-party applications.
Number Yes (initial value: 0)
maxWindowRatio Maximum aspect ratio supported by the UIAbility component. The minimum value is 0. Number Yes (initial value: maximum aspect ratio supported by the platform)
minWindowRatio Minimum aspect ratio supported by the UIAbility component. The minimum value is 0. Number Yes (initial value: minimum aspect ratio supported by the platform)
maxWindowWidth Maximum window width supported by the UIAbility component, in vp. The minimum value is 0, and the value cannot be less than the value of minWindowWidth or greater than the maximum window width allowed by the platform. For details about the window size, see Constraints. Number Yes (initial value: maximum window width supported by the platform)
minWindowWidth Minimum window width supported by the UIAbility component, in vp. The minimum value is 0, and the value cannot be less than the minimum window width allowed by the platform or greater than the value of maxWindowWidth. For details about the window size, see Constraints. Number Yes (initial value: minimum window width supported by the platform)
maxWindowHeight Maximum window height supported by the UIAbility component, in vp. The minimum value is 0, and the value cannot be less than the value of minWindowHeight or greater than the maximum window height allowed by the platform. For details about the window size, see Constraints. Number Yes (initial value: maximum window height supported by the platform)
minWindowHeight Minimum window height supported by the UIAbility component, in vp. The minimum value is 0, and the value cannot be less than the minimum window height allowed by the platform or greater than the value of maxWindowHeight. For details about the window size, see Constraints. Number Yes (initial value: minimum window height supported by the platform)
excludeFromMissions Whether the UIAbility component is displayed in the recent task list.
- true: displayed in the recent task list.
- false: not displayed in the recent task list.
NOTE
This attribute applies only to system applications and requires the AllowAbilityExcludeFromMissions privilege. For details, see Application Privilege Configuration.
Boolean Yes (initial value: false)
recoverable Whether the application can be recovered to its previous state in case of a detected fault.
- true: The application can be recovered to its previous state in case of a detected fault.
- false: The application cannot be recovered to its previous state in case of a detected fault.
Boolean Yes (initial value: false)
unclearableMission Whether the UIAbility component is unclearable in the recent tasks list.
- true: The UIAbility component is unclearable in the recent tasks list.
- false: The UIAbility component is clearable in the recent tasks list.
NOTE
This attribute works only after the AllowMissionNotCleared privilege is obtained.
Boolean Yes (initial value: false)

Example of the abilities structure:

{
  "abilities": [{
    "name": "EntryAbility",
    "srcEntry": "./ets/entryability/EntryAbility.ets",
    "launchType":"singleton",
    "description": "$string:description_main_ability",
    "icon": "$media:icon",
    "label": "Login",
    "permissions": [],
    "metadata": [],
    "exported": true,
    "continuable": true,
    "skills": [{
      "actions": ["ohos.want.action.home"],
      "entities": ["entity.system.home"],
      "uris": []
    }],
    "backgroundModes": [
      "dataTransfer",
      "audioPlayback",
      "audioRecording",
      "location",
      "bluetoothInteraction",
      "multiDeviceConnection",
      "wifiInteraction",
      "voip",
      "taskKeeping"
    ],
    "startWindowIcon": "$media:icon",
    "startWindowBackground": "$color:red",
    "removeMissionAfterTerminate": true,
    "orientation": " ",
    "supportWindowMode": ["fullscreen", "split", "floating"],
    "maxWindowRatio": 3.5,
    "minWindowRatio": 0.5,
    "maxWindowWidth": 2560,
    "minWindowWidth": 1400,
    "maxWindowHeight": 300,
    "minWindowHeight": 200,
    "excludeFromMissions": false,
    "unclearableMission": false
  }]
}

skills

The skills tag represents the feature set of wants that can be received by the UIAbility or ExtensionAbility component.

Table 7 skills

Name Description Data Type Initial Value Allowed
actions Actions of wants that can be received, which can be predefined or customized. String array Yes (initial value: left empty)
entities Entities of wants that can be received. String array Yes (initial value: left empty)
uris URIs that match the wants. Object array Yes (initial value: left empty)

Table 8 Internal structure of the uris tag

Name Description Data Type Initial Value Allowed
scheme Scheme of the URI, such as HTTP, HTTPS, file, and FTP. String Yes when only type is set in uris (initial value: left empty)
host Host address of the URI. This attribute is valid only when schema is set. Common methods:
- domain name, for example, example.com.
- IP address, for example, 10.10.10.1.
String Yes (initial value: left empty)
port Port number of the URI. For example, the default HTTP port number is 80, the default HTTPS port number is 443, and the default FTP port number is 21. This attribute is valid only when both scheme and host are set. String Yes (initial value: left empty)
path |pathStartWith |pathRegex Path of the URI. path, pathStartWith, and pathRegex represent different matching modes between the paths in the URI and the want. Set any one of them as needed. path indicates full matching, pathStartWith indicates prefix matching, and pathRegex indicates regular expression matching. This attribute is valid only when both scheme and host are set. String Yes (initial value: left empty)
type Data type that matches the want. The value compiles with the Multipurpose Internet Mail Extensions (MIME) type specification. This attribute can be configured together with scheme or be configured separately. String Yes (initial value: left empty)

Example of the skills structure:

{
  "abilities": [
    {
      "skills": [
        {
          "actions": [
            "ohos.want.action.home"
          ],
          "entities": [
            "entity.system.home"
          ],
          "uris": [
            {
              "scheme":"http",
              "host":"example.com",
              "port":"80",
              "path":"path",
              "type": "text/*"
            }
          ]
        }
      ]
    }
  ]
}

extensionAbilities

The extensionAbilities tag represents the configuration of extensionAbilities, which is valid only for the current extensionAbility.

Table 9 extensionAbilities

Name Description Data Type Initial Value Allowed
name Name of the ExtensionAbility component. The value is a string with a maximum of 127 bytes. The name must be unique in the entire application. String No
srcEntry Code path corresponding to the ExtensionAbility component. The value is a string with a maximum of 127 bytes. String No
description Description of the ExtensionAbility component. The value is a string with a maximum of 255 bytes or a resource index to the description. String Yes (initial value: left empty)
icon Icon of the ExtensionAbility component. The value is an icon resource index. If ExtensionAbility is set to MainElement of the current module, this attribute is mandatory and its value must be unique in the application. String Yes (initial value: left empty)
label Name of the ExtensionAbility component displayed to users. The value is a string resource index.
NOTE
If ExtensionAbility is set to MainElement of the current module, this attribute is mandatory and its value must be unique in the application.
String No
type Type of the ExtensionAbility component. The options are as follows:
- form: ExtensionAbility of a widget.
- workScheduler: ExtensionAbility of a Work Scheduler task.
- inputMethod: ExtensionAbility of an input method.
- service: service component running in the background.
- accessibility: ExtensionAbility of an accessibility feature.
- dataShare: ExtensionAbility for data sharing.
- fileShare: ExtensionAbility for file sharing.
- staticSubscriber: ExtensionAbility for static broadcast.
- wallpaper: ExtensionAbility of the wallpaper.
- backup: ExtensionAbility for data backup.
- window: ExtensionAbility of a window. This type of ExtensionAbility creates a window during startup for which you can develop the GUI. The window is then combined with other application windows through abilityComponent.
- thumbnail: ExtensionAbility for obtaining file thumbnails. You can provide thumbnails for files of customized file types.
- preview: ExtensionAbility for preview. This type of ExtensionAbility can parse the file and display it in a window. You can combine the window with other application windows.
- print: ExtensionAbility for the print framework.
- push: ExtensionAbility to be pushed.
- driver: ExtensionAbility for the driver framework.
- remoteNotification: ExtensionAbility for remote notifications.
- remoteLocation: ExtensionAbility for remote location.
- voip: ExtensionAbility for VoIP calls.
NOTE
The service and dataShare types apply only to system applications and do not take effect for third-party applications.
String No
permissions Permissions required for another application to access the ExtensionAbility component.
The value is generally in the reverse domain name notation and contains a maximum of 255 bytes. It is an array of predefined permission names.
String array Yes (initial value: left empty)
uri Data URI provided by the ExtensionAbility component. The value is a string with a maximum of 255 bytes, in the reverse domain name notation.
NOTE
This attribute is mandatory when the type of the ExtensionAbility component is set to dataShare.
String Yes (initial value: left empty)
skills Feature set of wants that can be received by the ExtensionAbility component.
Configuration rule: In an entry package, you can configure multiple skills attributes with the entry capability. (A skills attribute with the entry capability is the one that has ohos.want.action.home and entity.system.home configured.) The label and icon in the first ExtensionAbility that has skills configured are used as the label and icon of the entire OpenHarmony service/application.
NOTE
The skills attribute with the entry capability can be configured for the feature package of an OpenHarmony application, but not for an OpenHarmony service.
Array Yes (initial value: left empty)
metadata Metadata of the ExtensionAbility component. Object Yes (initial value: left empty)
exported Whether the ExtensionAbility component can be called by other applications.
- true: The ExtensionAbility component can be called by other applications.
- false: The ExtensionAbility component cannot be called by other applications, not even by aa commands.
Boolean Yes (initial value: false)

Example of the extensionAbilities structure:

{
  "extensionAbilities": [
    {
      "name": "FormName",
      "srcEntry": "./form/MyForm.ts",
      "icon": "$media:icon",
      "label" : "$string:extension_name",
      "description": "$string:form_description",
      "type": "form",
      "permissions": ["ohos.abilitydemo.permission.PROVIDER"],
      "readPermission": "",
      "writePermission": "",
      "exported": true,
      "uri":"scheme://authority/path/query",
      "skills": [{
        "actions": [],
        "entities": [],
        "uris": []
      }],
      "metadata": [
        {
          "name": "ohos.extension.form",
          "resource": "$profile:form_config",
        }
      ]
    }
  ]
}

requestPermissions

The requestPermissions tag represents a set of permissions that the application needs to request from the system for running correctly. For details about how to request permissions, see Applying for Permissions.

NOTE

  • The permission settings configured in the requestPermissions tag apply to the entire application.
  • If your application needs to subscribe to an event published by itself and the permissions required for accessing the application are set in the permissions tag under extensionAbilities, then the application must register the related permissions in the requestPermissions tag to receive the event.

Table 10 requestPermissions

Name Description Data Type Value Range Default Value
name Permission name. This attribute is mandatory. String Custom
reason Reason for requesting the permission. This attribute is mandatory when the permission to request is user_grant.
NOTE
If the permission to request is user_grant, this attribute is required for the application to be released to the application market. Multi-language adaptation is required.
String Resource reference of the string type in $string: *** format A null value
usedScene Scene under which the permission is used. It consists of the abilities and when sub-attributes. Multiple abilities can be configured.
NOTE
This attribute is optional by default. If the permission to request is user_grant, the abilities sub-attribute is mandatory and when is optional.
abilities: string array
when: string
abilities: array of names of UIAbility or ExtensionAbility components
when: inuse or always
abilities: null
when: null

Example of the requestPermissions structure:

{
  "module" : {
    "requestPermissions": [
      {
        "name": "ohos.abilitydemo.permission.PROVIDER",
        "reason": "$string:reason",
        "usedScene": {
          "abilities": [
            "EntryFormAbility"
          ],
          "when": "inuse"
        }
      }
    ]
  }
}

shortcuts

The shortcuts tag provides the shortcut information of an application. The value is an array of up to four shortcuts. It consists of four sub-attributes: shortcutId, label, icon, and wants.

The shortcut information is identified in metadata, where:

  • name indicates the name of the shortcut, identified by ohos.ability.shortcuts.

  • resource indicates where the resources of the shortcut are stored.

Table 11 shortcuts

Name Description Data Type Default Value
shortcutId ID of the shortcut. The value is a string with a maximum of 63 bytes. String No
label Label of the shortcut, that is, the text description displayed for the shortcut. The value can be a string or a resource index to the label, with a maximum of 255 bytes. String Yes (initial value: left empty)
icon Icon of the shortcut. The value is an icon resource index. String Yes (initial value: left empty)
wants Wants to which the shortcut points. Each want consists of the bundleName and abilityName sub-attributes.
- bundleName: target bundle name of the shortcut. The value is a string.
- abilityName: target component name of the shortcut. The value is a string.
Object Yes (initial value: left empty)
  1. Configure the shortcuts_config.json file in /resource/base/profile/.
   {
     "shortcuts": [
       {
         "shortcutId": "id_test1",
         "label": "$string:shortcut",
         "icon": "$media:aa_icon",
         "wants": [
           {
             "bundleName": "com.ohos.hello",
             "abilityName": "EntryAbility"
           }
         ]
       }
     ]
   }
  1. In the abilities tag of the module.json5 file, configure the metadata tag for the UIAbility component to which a shortcut needs to be added so that the shortcut configuration file takes effect for the UIAbility.
   {
     "module": {
       // ...
       "abilities": [
         {
           "name": "EntryAbility",
           "srcEntry": "./ets/entryability/EntryAbility.ets",
           // ...
           "skills": [
             {
               "entities": [
                 "entity.system.home"
               ],
               "actions": [
                 "ohos.want.action.home"
               ]
             }
           ],
           "metadata": [
             {
               "name": "ohos.ability.shortcuts",
               "resource": "$profile:shortcuts_config"
             }
           ]
         }
       ]
     }
   }

distributionFilter

The distributionFilter tag defines the rules for distributing HAP files based on different device specifications, so that precise matching can be performed when the application market distributes applications. Distribution rules cover the following factors: screen shape, screen size, screen resolution, and country/region code. During distribution, a unique HAP is determined based on the mapping between deviceType and these five factors. This tag must be configured in the /resource/profile resource directory. Its sub-tags are optional.

Table 12 distributionFilter

Name Description Data Type Initial Value Allowed
screenShape Supported screen shapes. Object array Yes (initial value: left empty)
screenWindow Supported window resolutions for when the application is running. This attribute applies only to the lite wearables. Object array Yes (initial value: left empty)
screenDensity Pixel density of the screen, in dots per inch (DPI). This attribute is optional. The value options are as follows:
- sdpi: small-scale DPI. This value is applicable to devices with a DPI range of (0, 120].
- mdpi: medium-scale DPI. This value is applicable to devices with a DPI range of (120, 160].
- ldpi: large-scale DPI. This value is applicable to devices with a DPI range of (160, 240].
- xldpi: extra-large-scale DPI. This value is applicable to devices with a DPI range of (240, 320].
- xxldpi: extra-extra-large-scale DPI. This value is applicable to devices with a DPI range of (320, 480].
- xxxldpi: extra-extra-extra-large-scale DPI. This value is applicable to devices with a DPI range of (480, 640].
Object array Yes (initial value: left empty)
countryCode Code of the country or region to which the application is to be distributed. The value is subject to the ISO-3166-1 standard. Enumerated definitions of multiple countries and regions are supported. Object array Yes (initial value: left empty)

Table 13 Internal structure of the screenShape tag

Name Description Data Type Initial Value Allowed
policy Rule for the sub-attribute value. Set this attribute to exclude or include.
- exclude: Exclude the matches of the sub-attribute value.
- include: Include the matches of the sub-attribute value.
String No
value Screen shapes. The value can be circle, rect, or both. Example: Different HAP files can be provided for a smart watch with a circular face and that with a rectangular face. String array No

Table 14 Internal structure of the screenWindow tag

Name Description Data Type Initial Value Allowed
policy Rule for the sub-attribute value. Set this attribute to exclude or include.
- exclude: Exclude the matches of the sub-attribute value.
- include: Include the matches of the sub-attribute value.
String No
value Screen width and height, in pixels. The value an array of supported width and height pairs, each in the “width * height” format, for example, “454 * 454”. String array No

Table 15 Internal structure of the screenDensity tag

Name Description Data Type Initial Value Allowed
policy Rule for the sub-attribute value. Set this attribute to exclude or include.
- exclude: Exclude the matches of the sub-attribute value.
- include: Include the matches of the sub-attribute value.
String No
value Pixel density of the screen, in DPI. String array No

Table 16 Internal structure of the countryCode tag

Name Description Data Type Initial Value Allowed
policy Rule for the sub-attribute value. Set this attribute to exclude or include.
- exclude: Exclude the matches of the sub-attribute value.
- include: Include the matches of the sub-attribute value.
String No
value Code of the country or region to which the application is to be distributed. String array No

Configure the distro_filter_config.json file (this file name is customizable) in resources/base/profile under the development view.

{
  "distributionFilter": {
    "screenShape": {
      "policy": "include",
      "value": [
        "circle",
        "rect"
      ]
    },
    "screenWindow": {
      "policy": "include",
      "value": [
        "454*454",
        "466*466"
      ]
    },
    "screenDensity": {
      "policy": "exclude",
      "value": [
        "ldpi",
        "xldpi"
      ]
    },
    "countryCode": {// Distribution to the Chinese mainland and Hong Kong, China is supported.
      "policy": "include",
      "value": [
        "CN",
        "HK"
      ]
    }
  }
}

Configure metadata in the module tag in the module.json5 file.

{
  "module": {
    // ...
    "metadata": [
      {
        "name": "ohos.module.distro",
        "resource": "$profile:distro_filter_config",
      }
    ]
  }
}

testRunner

The testRunner tag represents the supported test runner.

Table 17 Internal structure of the testRunner tag

Name Description Data Type Initial Value Allowed
name Name of the test runner object. The value is a string with a maximum of 255 bytes. String No
srcPath Code path of the test runner. The value is a string with a maximum of 255 bytes. String No

Example of the testRunner structure:

{
  "module": {
    // ...
    "testRunner": {
      "name": "myTestRunnerName",
      "srcPath": "etc/test/TestRunner.ts"
    }
  }
}

atomicService

The atomicService tag represents the atomic service configuration. It is available only when bundleType is set to atomicService in the app.json file.

Table 18 Internal structure of the atomicService tag

Name Description Data Type Initial Value Allowed
preloads List of modules to pre-load. Object array Yes (initial value: left empty)

Example of the atomicService structure:

{
  "module": {
    "atomicService": {
      "preloads":[
        {
          "moduleName":"feature"
        }
      ]
    }
  }
}

preloads

The preloads tag represents a list of modules to pre-load in an atomic service.

Table 19 Internal structure of the preloads tag

Name Description Data Type Initial Value Allowed
moduleName Name of the module to be preloaded when the current module is loaded in the atomic service. String No

Example of the preloads structure:

{
  "module": {
    "atomicService": {
      "preloads":[
        {
          "moduleName":"feature"
        }
      ]
    }
  }
}

dependencies

The dependencies tag identifies the list of shared libraries that the module depends on when it is running.

Table 20 Internal structure of the dependencies tag

Name Description Data Type Initial Value Allowed
bundleName Name of the shared bundle on which the current module depends. String Yes
moduleName Module name of the shared bundle on which the current module depends. String No
versionCode Version number of the shared bundle. Number Yes

Example of the dependencies structure:

{
  "module": {
    "dependencies": [
      {
        "bundleName":"com.share.library",
        "moduleName": "library",
        "versionCode": 10001
      }
    ]
  }
}

proxyData

The proxyDatas tag provides the list of data proxies provided by the module. It can be configured only for entry and feature modules.

Table 21 proxyData |Name |Description |Data Type|Initial Value Allowed| |———–|——————————|——–|———-| |uri|URI of the data proxy. The URIs configured for different data proxies must be unique and must be in the datashareproxy://Current application package name/xxx format.|String|No| |requiredReadPermission|Permission required for reading data from the data proxy. If it is not specified, other applications will not be able to use the data proxy. For non-system applications, the level of the set permission must be system_basic or system_core. For system applications, the permission level is not limited. For details about the permission level, see Application Permission List.|String|Yes (initial value: left empty)| |requiredWritePermission|Permission required for writing data to the data proxy. If it is not specified, other applications will not be able to use the data proxy. For non-system applications, the level of the set permission must be system_basic or system_core. For system applications, the permission level is not limited. For details about the permission level, see Application Permission List.|String|Yes (initial value: left empty)| |metadata|Metadata of the data proxy. Only the name and resource fields can be configured.|Object|Yes (initial value: left empty)|

Example of the proxyData structure:

{
  "module": {
    "proxyData": [
      {
        "uri":"datashareproxy://com.ohos.datashare/event/Meeting",
        "requiredReadPermission": "ohos.permission.GET_BUNDLE_INFO",
        "requiredWritePermission": "ohos.permission.GET_BUNDLE_INFO",
        "metadata": {
          "name": "datashare_metadata",
          "resource": "$profile:datashare"
        }
      }
    ]
  }
}

你可能感兴趣的鸿蒙文章

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  赞