[Solved] Android – Menu Item Crashing on Click (Camera Intent)


Your error log shows you have SecurityException: Permission Denial…with revoked permission android.permission.CAMERA. This means you are targetting API level 23 and the user has revoked the CAMERA permission. You should add code to check and request permission and handle permission acceptance/denial. Read more about it here.

3

solved Android – Menu Item Crashing on Click (Camera Intent)