Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Disable exoplayer diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnyro committed Feb 24, 2023
1 parent 650c75e commit 4a424aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 2,
"versionName": "2.0",
"versionCode": 3,
"versionName": "3.0",
"outputFile": "app-release.apk"
}
],
Expand Down
1 change: 1 addition & 0 deletions app/src/main/java/com/bnyro/recorder/ui/views/VideoView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ fun VideoView(videoUri: Uri) {
val context = LocalContext.current

val exoPlayer = ExoPlayer.Builder(context)
.setUsePlatformDiagnostics(false)
.build()
.also { exoPlayer ->
val mediaItem = MediaItem.Builder()
Expand Down

0 comments on commit 4a424aa

Please sign in to comment.