Мое приложение воспроизводит видео
Я слежу за этим Уведомления Exoplayer
Имею тот же код
PlayerNotificationManager playerNotificationManager = new PlayerNotificationManager(
appCMSPresenter.getCurrentContext(),
"kingkdfn",
459, new DescriptionAdapter());
playerNotificationManager.setPlayer(getPlayer());
DescriptionAdapter
public class DescriptionAdapter implements
PlayerNotificationManager.MediaDescriptionAdapter {
@Override
public String getCurrentContentTitle(Player player) {
int window = player.getCurrentWindowIndex();
return "getTitle(window)";
}
@Nullable
@Override
public String getCurrentContentText(Player player) {
int window = player.getCurrentWindowIndex();
return "getDescription(window)";
}
@Nullable
@Override
public Bitmap getCurrentLargeIcon(Player player,
PlayerNotificationManager.BitmapCallback callback) {
return null;
}
@Nullable
@Override
public PendingIntent createCurrentContentIntent(Player player) {
return null;
}
}
Все добавлено в манифест
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Но все равно уведомление не отображается при воспроизведении видео. Нужно ли мне что-то добавить?