diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 2 | ||||
-rw-r--r-- | app/src/main/java/ml/docilealligator/infinityforreddit/Infinity.java | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index 09085e84..25cbdf73 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -97,7 +97,7 @@ dependencies { implementation 'com.github.Piasy:BigImageViewer:1.6.5' implementation 'androidx.biometric:biometric:1.1.0-beta01' implementation 'com.airbnb.android:lottie:3.4.4' - implementation 'com.melegy.redscreenofdeath:red-screen-of-death:0.1.2' + //implementation 'com.melegy.redscreenofdeath:red-screen-of-death:0.1.2' def toroVersion = '3.7.0.2010003' implementation "im.ene.toro3:toro:$toroVersion" diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/Infinity.java b/app/src/main/java/ml/docilealligator/infinityforreddit/Infinity.java index a654eab4..274d1ad7 100644 --- a/app/src/main/java/ml/docilealligator/infinityforreddit/Infinity.java +++ b/app/src/main/java/ml/docilealligator/infinityforreddit/Infinity.java @@ -11,7 +11,6 @@ import androidx.annotation.Nullable; import com.evernote.android.state.StateSaver; import com.livefront.bridge.Bridge; import com.livefront.bridge.SavedStateHandler; -import com.melegy.redscreenofdeath.RedScreenOfDeath; import org.greenrobot.eventbus.EventBus; @@ -27,7 +26,7 @@ public class Infinity extends Application { public void onCreate() { super.onCreate(); - RedScreenOfDeath.init(this); + //RedScreenOfDeath.init(this); mAppComponent = DaggerAppComponent.builder() .appModule(new AppModule(this)) |