have you added POST_NOTIFICATIONS permission ?, becuase posting notifications on Android. In recent Android versions (starting from Android 13, API level 33), you need to explicitly declare the POST_NOTIFICATIONS permission in your AndroidManifest.xml like below:
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
Full documentation is available here