We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d87c02 commit 9d6e9c0Copy full SHA for 9d6e9c0
1 file changed
external-player/src/main/AndroidManifest.xml
@@ -4,6 +4,7 @@
4
5
<uses-permission android:name="android.permission.INTERNET" />
6
<uses-permission android:name="android.permission.WAKE_LOCK" />
7
+ <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
8
9
<application
10
android:allowBackup="true"
@@ -32,5 +33,10 @@
32
33
</intent-filter>
34
</activity>
35
36
+ <!-- Foreground service that runs ExoPlayer for background playbook -->
37
+ <service
38
+ android:name=".PlayerService"
39
+ android:exported="false"
40
+ android:foregroundServiceType="mediaPlayback" />
41
</application>
42
</manifest>
0 commit comments