androidPermissionExists |
Type | function |
Dictionary | LCS |
Library | LiveCode Script |
Syntax | androidPermissionExists(<permissionName>)
|
Summary | Returns true if permissionName is a valid Android permission name
|
Introduced | 9.0.1 |
OS | android |
Platforms | mobile |
Parameters | Name | Type | Description |
---|
permissionName | | The name of the permission to check.
|
|
Example | if not androidPermissionExists(pPermission) then
answer pPermission && "is not a valid permission name"
end if
|
Values | Name | Type | Description |
---|
return | | True if permissionName is a valid Android permission name, false otherwise.
|
|
Description | Use the androidPermissionExists function to check if permissionName is a valid Android permission name.
Note: Permission names are case sensitive.
|