79092622

Date: 2024-10-16 05:54:56
Score: 2
Natty:
Report link

Found the solution

Seems I didn't specify the foreground service type as described in the docs: https://notifee.app/react-native/docs/android/foreground-service#specifying-foreground-service-types

Adding the snippet below fixed the issue for me

<service 
        android:name="app.notifee.core.ForegroundService" 
        android:foregroundServiceType="camera|microphone"
        tools:replace="android:foregroundServiceType" />
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Austin Ezeh