From a77fbc812be81645b52ed8cecbb7cd3f9a08bb99 Mon Sep 17 00:00:00 2001 From: MondayNitro <87489540+MondayNitro@users.noreply.github.com> Date: Mon, 9 Dec 2024 01:25:24 +0530 Subject: [PATCH] Update utils.py --- utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.py b/utils.py index 804a24a..e5b0379 100644 --- a/utils.py +++ b/utils.py @@ -67,12 +67,12 @@ def patch_apk( if includes is not None: for i in includes: - command.append("-i") + command.append("-e") command.append(i) if excludes is not None: for e in excludes: - command.append("-e") + command.append("-d") command.append(e) command.append(apk)