Android 13 Permissions Changes
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.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<!-- Mandatory permission for Android 13 and above. -->
<!-- Also, should be asked in runtime. -->
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
</manifest>