Upgrade to WorkManager release compatible with Android 12
Issue #9181 #minor-release PiperOrigin-RevId: 403049218
This commit is contained in:
parent
a168c8c928
commit
8827ccb568
@ -36,6 +36,11 @@
|
|||||||
calls from the player to `Surface.setFrameRate`. This is useful for
|
calls from the player to `Surface.setFrameRate`. This is useful for
|
||||||
applications wanting to call `Surface.setFrameRate` directly from
|
applications wanting to call `Surface.setFrameRate` directly from
|
||||||
application code with Android 12's `Surface.CHANGE_FRAME_RATE_ALWAYS`.
|
application code with Android 12's `Surface.CHANGE_FRAME_RATE_ALWAYS`.
|
||||||
|
* Upgrade the WorkManager extension to depend on
|
||||||
|
`androidx.work:work-runtime:2.7.0`. Earlier versions of `work-runtime`
|
||||||
|
are not compatible with apps targeting Android 12, and will crash with
|
||||||
|
an `IllegalArgumentException` when creating `PendingIntent`s
|
||||||
|
([#9181](https://github.com/google/ExoPlayer/issues/9181)).
|
||||||
* UI:
|
* UI:
|
||||||
* `SubtitleView` no longer implements `TextOutput`. `SubtitleView`
|
* `SubtitleView` no longer implements `TextOutput`. `SubtitleView`
|
||||||
implements `Player.Listener`, so can be registered to a player with
|
implements `Player.Listener`, so can be registered to a player with
|
||||||
|
@ -17,7 +17,7 @@ apply from: "$gradle.ext.exoplayerSettingsDir/common_library_config.gradle"
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(modulePrefix + 'library-core')
|
implementation project(modulePrefix + 'library-core')
|
||||||
implementation 'androidx.work:work-runtime:2.5.0'
|
implementation 'androidx.work:work-runtime:2.7.0'
|
||||||
compileOnly 'org.jetbrains.kotlin:kotlin-annotations-jvm:' + kotlinAnnotationsVersion
|
compileOnly 'org.jetbrains.kotlin:kotlin-annotations-jvm:' + kotlinAnnotationsVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user