Skip to content

Commit

Permalink
Remove unnecessary Activity method overrides in session demo app
Browse files Browse the repository at this point in the history
The PlayerView methods are documented to only be needed for sphrerical
playbacks, which we are not using in the session demo app.

PiperOrigin-RevId: 525986709
  • Loading branch information
tonihei authored and rohitjoins committed Apr 24, 2023
1 parent affbb7c commit 2de89ca
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,6 @@ class PlayerActivity : AppCompatActivity() {
initializeController()
}

override fun onResume() {
super.onResume()
playerView.onResume()
}

override fun onPause() {
super.onPause()
playerView.onPause()
}

override fun onStop() {
super.onStop()
playerView.player = null
Expand Down

0 comments on commit 2de89ca

Please sign in to comment.