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:

  1. In the Navigator, click on Android under Build Settings.

  2. In the Inspector, click on the Advanced tab.

  3. Click to edit the Permissions property.

  4. Add your permissions then click OK.

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" />