Skip to content

Commit

Permalink
version 2.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroSG94 committed Mar 13, 2024
1 parent 6aa9d51 commit 65c006d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -62,7 +62,7 @@ allprojects {
}
}
dependencies {
implementation 'com.github.pedroSG94.RootEncoder:library:2.4.1'
implementation 'com.github.pedroSG94.RootEncoder:library:2.4.2'
}
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
val libraryGroup by rootProject.extra { "com.github.pedroSG94" }
val vCode by rootProject.extra { 241 }
val vName by rootProject.extra { "2.4.1" }
val vCode by rootProject.extra { 242 }
val vName by rootProject.extra { "2.4.2" }
val coroutinesVersion by rootProject.extra { "1.7.3" }
val junitVersion by rootProject.extra { "4.13.2" }
val mockitoVersion by rootProject.extra { "5.2.1" }
Expand Down
Expand Up @@ -146,7 +146,7 @@ class GlStreamInterface(private val context: Context): OnFrameAvailableListener,
surfaceManagerPhoto.eglSetup(encoderWidth, encoderHeight, surfaceManager)
running = true
mainRender.getSurfaceTexture().setOnFrameAvailableListener(this)
forceRender.start { draw(true) }
forceRender.start { executor?.execute { draw(true) } }
if (autoHandleOrientation) sensorRotationManager.start()
}
}
Expand Down

0 comments on commit 65c006d

Please sign in to comment.