Issue
My app needs camera access for stills only. The permissions dialog mentions record video. Is it possible to only request take pictures permission?
src="https://i.stack.imgur.com/rwwCC.png" alt="enter image description here" />
Solution
Simple answer No, Android doesn't allow custom layout for permission dialog
Your app cannot customize the dialog that appears when you call requestPermissions(). The text in the system permission dialog references a permission group, but this permission grouping is designed for system ease-of-use.
read documentation
Answered By - Sidharth Mudgil
Answer Checked By - Dawn Plyler (JavaFixing Volunteer)