GENERIC-15: Use permissions consistently. Every component of an app that has a permission must be declared also at the app level.


Description

Android apps must require permissions before accessing specific data or certain system activities, like accessing the Internet. All these permission need to be specified in the AndroidManifest.xml. And the certain system feature can then only be used if the user allows it.

Example

Since we use the internet in our MVP BossApplication we need to specify this permission in our AndroidManifest.xml file.