Services declaration in AndroidMani

This commit is contained in:
CappielloAntonio 2021-12-29 10:19:33 +01:00
parent 8ada5f61fc
commit 708e3c799e

View file

@ -24,11 +24,12 @@
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
</activity> </activity>
<service android:name=".service.MusicService" android:enabled="true"/> <service
<service android:name=".service.DownloaderService" android:exported="false"> android:name=".service.MediaService"
android:exported="true">
<intent-filter> <intent-filter>
<action android:name="com.google.android.exoplayer.downloadService.action.RESTART"/> <action android:name="androidx.media3.session.MediaLibraryService" />
<category android:name="android.intent.category.DEFAULT"/> <action android:name="androidx.media3.session.MediaBrowserService" />
</intent-filter> </intent-filter>
</service> </service>
</application> </application>