1. 25 Jan, 2022 17 commits
  2. 11 Jan, 2022 21 commits
  3. 05 Jan, 2022 2 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