From 1cd94831ac6744515bdb6125c41ad36114579214 Mon Sep 17 00:00:00 2001 From: tp7309 Date: Sun, 21 May 2023 16:39:40 +0800 Subject: [PATCH] update updater --- README.md | 2 +- updater.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index cc9efc1..faf0440 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ echo $showjardir >> ~/.bash_profile && source ~/.bash_profile # Linux echo $showjardir >> ~/.bashrc && source ~/.bashrc ``` -then you can execute command for decompile `*.apk/*.aar/*.dex/*.jar` anywhere, GUI will be automatically opened. +then you can execute command for decompile `*.apk/*.aar/*.dex/*.jar` anywhere, GUI will be opened automatically. ```bash showjar test.apk ``` diff --git a/updater.py b/updater.py index 6db80b0..cb7f76b 100644 --- a/updater.py +++ b/updater.py @@ -292,11 +292,11 @@ def initEnv(): def main(): initEnv() - # enjarify_updater() - # dex2jar_updater() - # jadx_updater() + enjarify_updater() + dex2jar_updater() + jadx_updater() apktool_updater() - # fernflower_updater() + fernflower_updater() if __name__ == '__main__':