The Runtime Permission API contains the following functions, which are part of the kony.application Namespace.
Checks and returns the permission status of one or more resources.
Syntax
kony.application.checkPermission(resourceId[constant/String], options[JSObject])
Input Parameters
Parameter | Description |
---|---|
resourceId [constant/String] - Mandatory | Specify the ID of the resource or name of the permission (only for Android) for which you want to check the status. You can specify either a String (permission name) or an integer (resourceId) value.
The feature to specify the name of the permission as a String is applicable only for Android. For instance, you can query a Native Android permission from the AndroidManifest.xml file by specifying the String directly: "android.permission.READ_PHONE_STATE". |
options [JSObject] - Optional | Specify the additional option to identify the exact resource of which you want to know the status. This is a platform-specific key. For more information, refer to Resource ID. |
Example 1
var options = { isAccessModeAlways: true }; var result = kony.application.checkPermission(kony.os.RESOURCE_LOCATION, options); if (result.status = = kony.application.PERMISSION_DENIED) { kony.application.requestPermission(); } else if (result.status = kony.application.PERMISSION_GRANTED) { kony.location.getCurrentPosition(); }
Example 2
< uses - permission android: name = "android.permission.READ_PHONE_STATE" / > var result = kony.application.checkPermission("android.permission.READ_PHONE_STATE"); if (result.status = = kony.application.PERMISSION_DENIED) { kony.application.requestPermission(); } else if (result.status = kony.application.PERMISSION_GRANTED) { kony.location.getCurrentPosition(); }
Return Values
JSObject
A JS Object contains the authorization status of the requested resource. The returned JSObject contains the following keys:
Return value | Description |
---|---|
status [constant] | Resource status constant which indicates the overall status of the resource authorization. For more information, refer to Permission Status. |
canRequestPermission [Boolean] | Indicates whether you can request for the permissions or not in case the value of the status is PERMISSION_DENIED. In the iOS platform, authorization for a resource can be requested only once. For more information, refer to Permission model in iOS. In the Android platform, the app can request for the permissions even though the status return value is PERMISSION_DENIED or direct the user to app settings to turn on or off the authorization. |
Platform Availability
Sends a request to the end-user to provide the access to specific resource.
Syntax
kony.application.requestPermission(resourceId[constant/String], statusCallback[Function], options[JSObject])
Input Parameters
Example 1
//< uses - permission android: name = "android.permission.READ_PHONE_STATE" > kony.application.requestPermission("android.permission.READ_PHONE_STATE", permissionStatusCallback); function permissionStatusCallback(response) { if (response.status == kony.application.PERMISSION_GRANTED) { kony.location.getCurrentPosition(); } else if (response.status == kony.application.PERMISSION_DENIED) { //Display Application Settings alert by using kony.application.openApplicationSettings() } }
function requestpermission() { var options = { "isVideoCapture": true, "getNeverAskAgainStatus": true } kony.application.requestPermission(kony.os.RESOURCE_LOCATION, permissionStatusCallback, options); } function permissionStatusCallback(response) { alert("response ::" + JSON.stringify()); if (response.status == kony.application.PERMISSION_GRANTED) { kony.location.getCurrentPosition(); } else if (response.status == kony.application.PERMISSION_DENIED) { Requestpermission(); /* To show the reason to users for granting the permission to use the feature and then raise a request. */ } else if (response.status == kony.application.PERMISSION_NEVER_ASK_AGAIN) { kony.application.openApplicationSettings(); /* To show the reason to users for granting the permission to use the feature and then open application settings to grant the request. */ } ) }
Return Values
Function | Description |
---|---|
JSObject |
A JSObject contains the authorization status of the requested resource. The returned JSObject contains the following key: status [constant] Resource status constant which indicates the overall status of the resource authorization. For more information, refer to Permission Status. Note: In the Android platform, the status remains PERMISSION_DENIED if at least one of the permissions associated with the resource is denied by the end-user. |
Platform Availability
When invoked, this API sends a request for a set of permissions. The status of the request is sent back to the user through a callback.
Syntax
Kony.application.requestPermissionSet(permissions, callback)
Input Parameters
Parameter | Description |
---|---|
Permissions | Array of qualified android permission strings. |
Callback | Function object result will invoke this function. The result is a JSobject where the key is permission string and the value is the permission status. |
Example
function requestpermission() { kony.application.requestPermissionSet(["android.permission.CAMERA", "android.permission.WRITE_CONTACTS"], permissionStatusCallback); } function permissionStatusCallback(response) { var camera = "android.permission.CAMERA"; var contacts = "android.permission.WRITE_CONTACTS"; for (var i in response) { /* iterating through permissionSet key value pair from response jsObject where 'i' is permission key and result is permission status */ var result = response[i]; if (result == kony.application.PERMISSION_DENIED) { // show message and raise request again } else if (result == kony.application.PERMISSION_NEVER_ASK_AGAIN) { // show message and open settings page kony.application.openApplicationSettings(); } } }
Return Values
None.
Platform Availability
Android
Opens the application-specific settings or device-level application settings.
You may need to direct the end-user to application settings to manually enable or disable a permission for the app to access a particular resource. This function is required when the end-user had denied the permission when the app prompted with a dialog box, and later wants the app to access the resource. For example, if your app wants to access the user's contacts - so the app displayed a dialog box with "Allow" and "Deny" options, asking end-user to grant permission for the first time. The end-user tapped the "Deny" option and the app cannot access the user's contacts. Later, after some point of time, if end-user wants the app access the user's contacts; at that time, you can call the openApplicationSettings API that allows the user to navigate to the application settings screen, and then grant the required permission to the app.
The behavior of the openApplicationSettings API in different platforms:
Syntax
kony.application.openApplicationSettings(resourceId[const])
Input Parameters
Function | Description |
---|---|
resourceId [constant] - Optional | Specify the resource ID of the resource that you want open its settings. The parameter works only for Windows 10. For more information, refer to Resource ID. |
Example
kony.application.openApplicationSettings(kony.os.RESOURCE_CONTACTS);
Return Values
None
Platform Availability
Copyright © 2013 Kony, Inc. All rights reserved. |