This repository was archived by the owner on Oct 6, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,8 @@ MusicControl.setNowPlaying({
108
108
colorized: true , // Android 8+ Only - Notification Color extracted from the artwork. Set to false to use the color property instead
109
109
date: ' 1983-01-02T00:00:00Z' , // Release Date (RFC 3339) - Android Only
110
110
rating: 84 , // Android Only (Boolean or Number depending on the type)
111
- notificationIcon: ' my_custom_icon' // Android Only (String), Android Drawable resource name for a custom notification icon
111
+ notificationIcon: ' my_custom_icon' , // Android Only (String), Android Drawable resource name for a custom notification icon
112
+ isLiveStream: true // iOS Only (Boolean), Show or hide Live Indicator instead of seekbar on lock screen for live streams. Default value is false.
112
113
})
113
114
```
114
115
Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ @interface MusicControlManager ()
37
37
@" playbackQueueIndex" : MPNowPlayingInfoPropertyPlaybackQueueIndex, \
38
38
@" playbackQueueCount" : MPNowPlayingInfoPropertyPlaybackQueueCount, \
39
39
@" chapterNumber" : MPNowPlayingInfoPropertyChapterNumber, \
40
- @" chapterCount" : MPNowPlayingInfoPropertyChapterCount \
40
+ @" chapterCount" : MPNowPlayingInfoPropertyChapterCount, \
41
+ @" isLiveStream" : MPNowPlayingInfoPropertyIsLiveStream \
41
42
}
42
43
43
44
@implementation MusicControlManager
You can’t perform that action at this time.
0 commit comments