1. 31 May, 2022 3 commits
  2. 30 May, 2022 19 commits
  3. 26 May, 2022 7 commits
  4. 23 May, 2022 7 commits
  5. 24 May, 2022 4 commits
    • Reorder demo samples · 4277ac38
      Put cloud storage samples at the top to avoid having a sample at the top of the list where we don't control the server.
      
      Also update labels not to mention progressive container type, as it's irrelevant for Transformer, which always transmuxes even if it doesn't transcode.
      
      #ame-bug-week
      
      PiperOrigin-RevId: 450403784
      andrewlewis committed
    • Remove `@Nullable` from some `Dash/Hls/SsMediaSource.Factory` methods · dc6cc455
      The null-behaviour of these methods creates a minimization footgun,
      because **any** call to these setters will prevent R8 from removing
      the default implementation (even if it's never used by the app) - this
      is because R8 can't tell the default implementation is only used if the
      parameter is `null`.
      
      Follow-up to https://github.com/google/ExoPlayer/commit/57182ac7bd32db54d11fd41e21338a2bbfaf043c
      
      PiperOrigin-RevId: 450395941
      ibaker committed
    • Remove `@Nullable` from `MediaSource.Factory` setters · 57182ac7
      The null-behaviour of these methods creates a minimization footgun,
      because **any** call to these setters will prevent R8 from removing
      the default implementation (even if it's never used by the app) - this
      is because R8 can't tell the default implementation is only used if the
      parameter is `null`.
      
      PiperOrigin-RevId: 450386627
      ibaker committed
    • Remove 5G-NSA detection on API 29/30. · 48a0301b
      This detection relies on an unsupported workaround and may trigger
      permission warnings in tools analyzing permission usage although
      no permission is needed or requested by app code.
      
      Given the majority of 5G-NSA playbacks are on API 31+ by now,
      we can remove this path to avoid the permission confusion and the
      unsupported detection workaround.
      
      PiperOrigin-RevId: 450382586
      tonihei committed