1. 25 Jan, 2022 15 commits
  2. 11 Jan, 2022 21 commits
  3. 05 Jan, 2022 4 commits
    • Add Gradle constraints to common module to enforce matching versions · 3b1b2506
      The common module now defines all other released targets as constraints,
      which ensures they must have matching versions. As all other libraries
      indirectly depend on the common module, this declaration is only needed
      in here.
      
      PiperOrigin-RevId: 419776578
      tonihei committed
    • Fix missing notification of session release · bb81c496
      A session may not notify its release back to the controller
      when the controller is connecting while the session is releasing.
      Here are issues in detail:
        - MediaSession doesn't respond to controller's connection
          request when it's released.
        - MediaSession discards incoming connection requests when it's
          released. The requests are only kept in the application
          looper, but the looper is cleared when the session is
          released.
      
      This CL fixes the above issues, and fixes some flaky tests.
      
      PiperOrigin-RevId: 419756158
      jaewan committed
    • Add translatable playback speed strings · f7e88d7c
      The UI component will be switched over to use them in a
      subsequent commit, once the translations have been
      imported.
      
      Issue: google/ExoPlayer#9811
      PiperOrigin-RevId: 419632617
      olly committed
    • Allow continuous seeking. · 1078fffd
      PiperOrigin-RevId: 419629912
      claincly committed