With 2.4.0 FOREGROUND_SERVICE_MEDIA_PROJECTION permission is being added even if the app does not implement it. This is problematic because Google requires all use of Foreground service to only be declared when actually in use. This has to be proven with a video.
It's possible to workaround this by adding this line to AndroidManifest of the app but it's not ideal:
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION" tools:node="remove" />
Describe the bug
With 2.4.0
FOREGROUND_SERVICE_MEDIA_PROJECTION
permission is being added even if the app does not implement it. This is problematic because Google requires all use of Foreground service to only be declared when actually in use. This has to be proven with a video.It's possible to workaround this by adding this line to AndroidManifest of the app but it's not ideal:
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION" tools:node="remove" />
Google Play Console screenshot: