ek.getAppAuthorizeSetting
获取宿主 APP 授权设置。
返回
属性 | 类型 | 说明 |
---|---|---|
albumAuthorized | AuthorizedStatus | 允许宿主使用相册的开关 |
bluetoothAuthorized | AuthorizedStatus | 允许宿主使用蓝牙的开关 |
cameraAuthorized | AuthorizedStatus | 允许宿主使用摄像头的开关 |
locationAuthorized | AuthorizedStatus | 允许宿主使用定位的开关 |
locationReducedAccuracy | boolean | 是否是模糊定位 |
microphoneAuthorized | AuthorizedStatus | 允许宿主使用麦克风的开关 |
notificationAuthorized | AuthorizedStatus | 允许宿主通知的开关 |
notificationAlertAuthorized | AuthorizedStatus | 允许宿主通知带有提醒的开关 |
notificationBadgeAuthorized | AuthorizeStatus | 允许宿主通知带有标记的开关 |
notificationSoundAuthorized | AuthorizedStatus | 允许宿主通知带有声音的开关 |
AuthorizedStatus 说明
ts
type AuthorizedStatus = 'authorized' | 'denied' | 'not determined'
- authorized: 已经授权
- denied: 拒绝授权
- not determined: 还未同意是否授权
Example
ts
const setting = ek.getAppAuthorizeSetting()