Add BitmapProvider class

This commit is contained in:
vfsfitvnm
2022-06-28 16:03:30 +02:00
parent 72eb9d4c7d
commit cfd7dc40df

View File

@@ -63,8 +63,9 @@
</activity> </activity>
<service <service
android:name=".services.PlayerService" android:name=".service.PlayerService"
android:exported="false" android:exported="false"
android:foregroundServiceType="mediaPlayback"> android:foregroundServiceType="mediaPlayback">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON"/> <action android:name="android.intent.action.MEDIA_BUTTON"/>
@@ -80,7 +81,7 @@
</receiver> </receiver>
<receiver <receiver
android:name=".services.PlayerService$StopServiceBroadcastReceiver" android:name=".service.PlayerService$StopServiceBroadcastReceiver"
android:exported="false" /> android:exported="false" />
</application> </application>
</manifest> </manifest>