Adding permissions
Some Android declares or libraries may require that your app have specific permissions in order to call them. You can add these permissions to your app's manifest file via the Permissions property. To do so:
In the Navigator, click on Android under Build Settings.
In the Inspector, click on the Advanced tab.
Click to edit the Permissions property.
Add your permissions then click OK.
Permissions are added to the AndroidManifest.xml file when the app is run/built.
Format
Permissions should be added in XML format.
For example:
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />