From 16818e3508583cdc85e77848fb0a787fc00a8836 Mon Sep 17 00:00:00 2001 From: xerox Date: Wed, 5 Aug 2020 08:55:25 +0000 Subject: [PATCH] Update README.md --- ligma (cheat)/README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/ligma (cheat)/README.md b/ligma (cheat)/README.md index 086a2b588..36d891c48 100644 --- a/ligma (cheat)/README.md +++ b/ligma (cheat)/README.md @@ -28,4 +28,22 @@ apktool.jar d codm.apk now go to this smali file: `smali\com\tencent\tpshell\TPShellApplication.smali`. Add this smali code to load our .so: - \ No newline at end of file + + +### recompile + +simply run this to recompile the apk, this apk is not signed and will need to be signed. + +``` +apktool.jar b codm -o codm_patched.apk +``` + +### signing + +use apksigner.jar to sign the newly compiled apk. + +``` +apksigner.jar -a codm_patched.apk +``` + +now you have a patched & signed apk. Its time to install the apk. \ No newline at end of file