mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-14 14:09:28 +01:00
1d41f2f8e4
The notfification APIs now use NotificationSpec as their only parameter, which contains all information (required and optional ones). We no longer have separate methods and actions for SMS/EMAIL/GENERIC anymore. The type of notification is important now, not how we received them technically.
28 lines
885 B
Java
28 lines
885 B
Java
package nodomain.freeyourgadget.gadgetbridge.externalevents;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
|
|
|
public class MusicPlaybackReceiver extends BroadcastReceiver {
|
|
private static final Logger LOG = LoggerFactory.getLogger(MusicPlaybackReceiver.class);
|
|
|
|
private static String mLastSource;
|
|
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
String artist = intent.getStringExtra("artist");
|
|
String album = intent.getStringExtra("album");
|
|
String track = intent.getStringExtra("track");
|
|
|
|
LOG.info("Current track: " + artist + ", " + album + ", " + track);
|
|
|
|
GBApplication.deviceService().onSetMusicInfo(artist, album, track);
|
|
}
|
|
}
|