Run time permission

Request Permission Launcher with Kotlin in Android

In this article, we are learning about the run time permissions for request permission launchers. As we know that onRequestPermissionsResult is deprecated in the latest android API version. So we need to use registerForActivityResult() method instead onRequestPermissionsResult() as alternative of onRequestPermissionsResult(). Let’s take an example where we need to access the camera to take pictures. […]

Scroll to top