HarmonyOS开发——编译报错“The reason and usedScene attributes are mandatory for user_grant permissions”

问题现象:

DevEco Studio编译失败,提示“The reason and usedScene attributes are mandatory for user_grant permissions”。

问题原因:

从DevEco Studio NEXT Developer Preview2版本开始新增规则:APP包中,所有entry和feature hap的module下的requestPermissions权限清单必须指定(可以缺省为空,若非空则name必填,user_grant权限则必填reason、usedScene字段)。

 

解决措施:

进入对应module.json5文件中,补齐requestPermissions字段下的reason和usedScene字段。

代码示例如下:

"requestPermissions": [{
    "name": "ohos.permission.MEDIA_LOCATION",
    "reason": "$string:module_desc",
    "usedScene": {
        "abilities": [
            "EntryAbility"
        ],
        "when": "always"
    }
}]

如上,添加了 "reason": "$string:module_desc" 之后,报错就没有了,重新编译,运行成功。

posted on 2024-10-10 10:52  逍遥云天  阅读(214)  评论(0编辑  收藏  举报

导航