<Kotlin app using camera does not return picture i...
# stackoverflow
u
Kotlin app using camera does not return picture if camera is never launched before I've stuck for a while with annoying issue with emulator's camera in my app. (The same is repro on a real device) The camera is used from a dialog fragment to take a picture that later will be uploaded to remote host. private val cameraPermissionLauncher = registerForActivityResult( ActivityResultContracts.RequestPermission() ) { isGranted -> if (isGranted) { makeImageWithCamera() } else { dismiss() } } private val cameraLauncher = registerForActivityResult(...