Android Runtime permissions in marshmallow for Android Camera application

In Android marshmallow android introduced runtime permissions. Here my question is Do Android system application such as Camera, Phonebook need to ask for permission like any other non system applications.
Does android system application have some privileges.

Thanks

Upvotes: 0

Views: 68

Answers (1)

tim4dev
tim4dev

Reputation: 2987

If you are going to run system applications (by Intent), then you must request the appropriate permissions, except Normal Permissions.

NOTE. And you must remember that the user can at any time revoke the granted permissions.

Upvotes: 1

Related Questions