Multiple choice technology embedded technologies

To access the camera hardware directly, we need to add the permission to your application manifest file by

  1. android.permission.VIDEO

  2. android.permission.MEDIA

  3. android.permission.CAMERA

  4. all of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

To access camera hardware in Android, the application manifest must declare the android.permission.CAMERA permission. The permissions android.permission.VIDEO and android.permission.MEDIA do not exist or do not directly grant direct access to the camera hardware.