defaultPermissionPolicy property
The default policy for all permissions requested by the app.
If specified, this overrides the policy-level default_permission_policy which applies to all apps. It does not override the permission_grants which applies to all apps. Possible string values are:
- "PERMISSION_POLICY_UNSPECIFIED" : Policy not specified. If no policy is specified for a permission at any level, then the PROMPT behavior is used by default.
- "PROMPT" : Prompt the user to grant a permission.
- "GRANT" : Automatically grant a permission.
- "DENY" : Automatically deny a permission.
Implementation
core.String? defaultPermissionPolicy;