mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-08-29 11:59:06 +00:00
multiplatform: stop video playback when swiping away (#6588)
* android/build.gralde.kts: add JAVA_HOME to PATH * fullScreenView: dispose player.stop when view changes * fullScreenView: stop the video playback midway swipe Previously, video playback stopped **only** when screen was fully swiped away to next item. * ImageFullScreenView: simplify * revert back VideoView
This commit is contained in:
@@ -192,7 +192,10 @@ tasks {
|
||||
}
|
||||
exec {
|
||||
workingDir("../../scripts/android")
|
||||
environment = mapOf("JAVA_HOME" to "$javaHome")
|
||||
environment = mapOf(
|
||||
"JAVA_HOME" to "$javaHome",
|
||||
"PATH" to "${javaHome}/bin${File.pathSeparator}${System.getenv("PATH")}"
|
||||
)
|
||||
commandLine = listOf(
|
||||
"./compress-and-sign-apk.sh",
|
||||
"${rootProject.extra["compression.level"]}",
|
||||
|
||||
Reference in New Issue
Block a user