Skip to content

Commit

Permalink
Raise compileSdk to 33
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxr1998 authored and nielsvanvelzen committed Sep 22, 2022
1 parent 02e6b2c commit 6a8858f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ detekt {
}

android {
compileSdk = 32
compileSdk = 33

defaultConfig {
applicationId = "org.jellyfin.mobile"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class PlayerGestureHelper(
private val unlockDetector = GestureDetector(
playerView.context,
object : GestureDetector.SimpleOnGestureListener() {
override fun onSingleTapConfirmed(e: MotionEvent?): Boolean {
override fun onSingleTapConfirmed(e: MotionEvent): Boolean {
playerLockScreenHelper.peekUnlockButton()
return true
}
Expand Down Expand Up @@ -119,7 +119,7 @@ class PlayerGestureHelper(
return true
}

override fun onSingleTapConfirmed(e: MotionEvent?): Boolean {
override fun onSingleTapConfirmed(e: MotionEvent): Boolean {
playerView.apply {
if (!isControllerVisible) showController() else hideController()
}
Expand Down

0 comments on commit 6a8858f

Please sign in to comment.