Skip to content

Commit

Permalink
Remove RedScreenOfDeath
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxr1998 authored and nielsvanvelzen committed Aug 21, 2023
1 parent 85c54fe commit 19ea358
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
2 changes: 0 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,6 @@ dependencies {
// Monitoring
implementation(libs.timber)
debugImplementation(libs.leakcanary)
debugImplementation(libs.redscreenofdeath.impl)
releaseImplementation(libs.redscreenofdeath.noop)

// Testing
testImplementation(libs.junit.api)
Expand Down
4 changes: 0 additions & 4 deletions app/src/main/java/org/jellyfin/mobile/JellyfinApplication.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package org.jellyfin.mobile

import android.app.Application
import android.webkit.WebView
import com.melegy.redscreenofdeath.RedScreenOfDeath
import org.jellyfin.mobile.app.apiModule
import org.jellyfin.mobile.app.applicationModule
import org.jellyfin.mobile.data.databaseModule
Expand All @@ -22,9 +21,6 @@ class JellyfinApplication : Application() {
Timber.plant(JellyTree())

if (BuildConfig.DEBUG) {
// Setup exception handler
RedScreenOfDeath.init(this)

// Enable WebView debugging
if (isWebViewSupported()) {
WebView.setWebContentsDebuggingEnabled(true)
Expand Down
3 changes: 0 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ androidx-room = "2.5.2"
# Monitoring
timber = "5.0.1"
leakcanary = "2.11"
redscreenofdeath = "0.1.3"

# Testing
junit = "5.10.0"
Expand Down Expand Up @@ -135,8 +134,6 @@ androidx-room-compiler = { group = "androidx.room", name = "room-compiler", vers
# Monitoring
timber = { group = "com.jakewharton.timber", name = "timber", version.ref = "timber" }
leakcanary = { group = "com.squareup.leakcanary", name = "leakcanary-android", version.ref = "leakcanary" }
redscreenofdeath-impl = { group = "com.mlegy.redscreenofdeath", name = "red-screen-of-death", version.ref = "redscreenofdeath" }
redscreenofdeath-noop = { group = "com.mlegy.redscreenofdeath", name = "red-screen-of-death-no-op", version.ref = "redscreenofdeath" }

# Testing
junit-api = { group = "org.junit.jupiter", name = "junit-jupiter-api", version.ref = "junit" }
Expand Down

0 comments on commit 19ea358

Please sign in to comment.