Android 13 Permissions Changes

Team
SDK Team
Last Updated
June 10, 2026

Adding Permissions to the Android Manifest

The following permission have to be added to the Android Manifest for the SDK to work properly. This new permission must be asked in runtime, and the user must explicitly accept it.

1<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 xmlns:tools="http://schemas.android.com/tools">
3
4 <!-- Mandatory permission for Android 13 and above. -->
5 <!-- Also, should be asked in runtime. -->
6 <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
7
8</manifest>