diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-11-28 11:56:49 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-11-28 11:56:49 +0530 |
commit | 2de636c31bf27f7e616f8d44bba6e6e877ba8ce3 (patch) | |
tree | 863314b805f13c52396f22c565f067e2e72c7462 /app | |
parent | 1379ca24399e160828f5bc1c732ff80dc1b7a24e (diff) |
feat: remove WhatTheStack
This is pretty unmaintained
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle.kts | 6 | ||||
-rw-r--r-- | app/proguard-rules.pro | 5 |
2 files changed, 0 insertions, 11 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 2bef7d22..abd26932 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -89,12 +89,6 @@ dependencies { implementation(libs.thirdparty.sshj) implementation(libs.thirdparty.bouncycastle.bcprov) - if (snapshot.snapshot) { - implementation(libs.thirdparty.whatthestack) - } else { - debugImplementation(libs.thirdparty.whatthestack) - } - implementation(libs.thirdparty.slf4j.api) { because("SSHJ now uses SLF4J 2.0 which we don't want") } diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index eb414a5d..25887cac 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -4,8 +4,3 @@ -keep class org.eclipse.jgit.internal.JGitText { *; } -keep class org.bouncycastle.jcajce.provider.** { *; } -keep class !org.bouncycastle.jce.provider.X509LDAPCertStoreSpi,org.bouncycastle.jce.provider.** { *; } - -# WhatTheStack --keep class com.haroldadmin.whatthestack.WhatTheStackInitializer { - <init>(); -} |