From b5f771368ab701a18f6be663b7a3b64ffc8f544e Mon Sep 17 00:00:00 2001 From: Aria Moradi Date: Thu, 19 Aug 2021 03:15:35 +0430 Subject: [PATCH] put back dex2jar where it should be --- build.gradle.kts | 4 ++++ server/build.gradle.kts | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 974f331f..7a4e557b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -79,6 +79,10 @@ configure(projects) { // to get application content root implementation("net.harawata:appdirs:1.2.1") + // dex2jar: https://github.com/DexPatcher/dex2jar/releases/tag/v2.1-20190905-lanchon + // note: watch https://github.com/ThexXTURBOXx/dex2jar for future developments + implementation("com.github.DexPatcher.dex2jar:dex-tools:v2.1-20190905-lanchon") + // APK parser implementation("net.dongliu:apk-parser:2.6.10") diff --git a/server/build.gradle.kts b/server/build.gradle.kts index 580cc52e..6a53416a 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -63,10 +63,6 @@ dependencies { implementation("com.github.salomonbrys.kotson:kotson:2.5.0") - // dex2jar: https://github.com/DexPatcher/dex2jar/releases/tag/v2.1-20190905-lanchon - // note: watch https://github.com/ThexXTURBOXx/dex2jar for future developments - implementation("com.github.DexPatcher.dex2jar:dex-tools:v2.1-20190905-lanchon") - // asm for fixing SimpleDateFormat (must match Dex2Jar version) implementation("org.ow2.asm:asm-debug-all:5.0.3")