Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dokka from 2.0.0-Beta to 2.0.0 #837

Merged
merged 2 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ detekt.use.worker.api=true
# https://kotlinlang.org/docs/dokka-migration.html#migrate-your-project
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
org.jetbrains.dokka.experimental.tryK2=true
org.jetbrains.dokka.experimental.tryK2.nowarn=true
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ coil = "3.0.4"
comscore = "6.11.1"
dependency-analysis-gradle-plugin = "2.6.1"
detekt = "1.23.7"
dokka = "2.0.0-Beta"
dokka = "2.0.0"
guava = "33.3.1-android"
json = "20240303"
junit = "4.13.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,21 @@ package ch.srgssr.pillarbox.player.session
import android.app.PendingIntent
import androidx.annotation.IntRange
import androidx.media3.common.MediaItem
import androidx.media3.common.MediaMetadata
import androidx.media3.session.LibraryResult
import androidx.media3.session.MediaLibraryService
import androidx.media3.session.MediaLibraryService.MediaLibrarySession
import androidx.media3.session.MediaSession
import androidx.media3.session.SessionError
import ch.srgssr.pillarbox.player.PillarboxPlayer
import ch.srgssr.pillarbox.player.session.PillarboxMediaLibrarySession.Builder
import ch.srgssr.pillarbox.player.utils.PendingIntentUtils
import com.google.common.collect.ImmutableList
import com.google.common.util.concurrent.Futures
import com.google.common.util.concurrent.ListenableFuture

/**
* An extended [PillarboxMediaSession] for the [PillarboxMediaLibraryService].
* Build an instance with [Builder] and return it from [PillarboxMediaLibraryService.onGetPillarboxSession]
* or [PillarboxMediaLibraryService.onGetSession] with [PillarboxMediaLibrarySession.mediaSession].
* Build an instance with [Builder] and return it from [PillarboxMediaLibraryService.onGetSession] with [PillarboxMediaLibrarySession.mediaSession].
*
* @see MediaLibrarySession
* @see PillarboxMediaLibraryService
Expand Down
Loading