onRequestPermissionsResult
abstract fun onRequestPermissionsResult(requestCode: Int, @NonNull permissions: Array<String>, @NonNull grantResults: Array<Int>): Boolean
Return
whether this permission was handled or not. If false, then the request belonged to someone else, you should call super. This boolean does not mean permission was granted or not. It only means whether this request was made by sdk component and was handled/processed (success or failure)
Parameters
requestCode
forward this value from activity or fragment. Do not create this value.
permissions
forward this value from activity or fragment. Do not create this value.
grantResults
forward this value from activity or fragment. Do not create this value.