Go to file
zhouyan df61b5a77e 解决自定义弹窗结束崩溃的问题
Signed-off-by: zhouyan <zhouyan160@huawei.com>
Change-Id: I4f6f103c4ab0618da754afd0b64aeb2177ef22dc
2023-07-29 11:16:40 +08:00
AppScope 列表hover效果 2023-07-27 14:26:49 +08:00
entry 通用规范告警 2023-05-22 20:28:57 +08:00
figures update docs 2022-12-19 11:05:40 +08:00
permissionmanager 解决自定义弹窗结束崩溃的问题 2023-07-29 11:16:40 +08:00
signature bundle接口更新. 2023-06-14 15:48:19 +08:00
.gitignore deciceTypes整改 2022-09-20 15:06:48 +08:00
build-profile.json5 test 2022-08-30 19:09:38 +08:00
hvigorfile.js test 2022-08-30 09:17:44 +08:00
LICENSE test 2022-08-30 09:17:44 +08:00
OAT.xml test 2022-08-30 09:17:44 +08:00
package-lock.json 切换arkui新框架 2023-03-30 10:51:06 +08:00
package.json 切换arkui新框架 2023-03-30 10:51:06 +08:00
README_zh.md Readme更新 2023-06-05 17:16:01 +08:00
README.md Readme更新 2023-06-05 17:16:01 +08:00

PermissionManager

Introduction

PermissionManager, a system application preset in OpenHarmony, provides permission dialog boxes, permission management settings, and permission usage records during the running of apps.

The following figure shows the architecture of the PermissionManager application.

Directory Structure

/applications/standard/permission_manager
├── entry                              # Directory of the entry module
├── permissionmanager                  # Directory of the PermissionManager module
│   ├── src/main/ets                   # ets module
│   │       ├── Application            # abilitystage directory
│   │       ├── MainAbility            # Permission management ability
│   │       ├── ServiceExtAbility      # serviceExtension configuration
│   │       ├── common                 # Common utilities
│   │       └── pages                  # Pages
│   ├──  resources                     # Global resource files
│   └──  module.json5                  # Global configuration file
├── signature                          # Certificate files
└── LICENSE                            # License file

Installation, operation and commissioning

Application installation

  • There are two files that need to change the suffix to json5
/AppScope/app.json
/permissionmanager/src/main/module.json
  • Uninstall preset rights management for the first installation
hdc shell mount -o remount,rw /
hdc shell rm -rf /system/app/com.ohos.permissionmanager
hdc shell rm -rf /data/*
hdc shell reboot
  • Install the signed hap package
hdc install Packet path

Application running

import abilityAccessCtrl from '@ohos.abilityAccessCtrl';
let atManager = abilityAccessCtrl.createAtManager();
try {
    atManager.requestPermissionsFromUser(this.context, ['ohos.permission.CAMERA'], (err, data)=>{
        console.info('data:' + JSON.stringify(data));
        console.info('data permissions:' + data.permissions);
        console.info('data authResults:' + data.authResults);
    });
} catch(err) {
    console.log(`catch err->${JSON.stringify(err)}`);
}
  • Permission manager

Settings-Privacy-Permission Manager

Application debugging

  • Add log to the program
const TAG = "PermissionManager_Log"
console.info(TAG + `log`);
  • Grab log
hdc shell hilog -Q pidoff
hdc shell -b D
hdc shell hilog -r && hdc hilog > log.txt

How to Use

For details, see Permission Application Guide.

Repositories Involved

security_access_token