1
0
Fork 0
mirror of https://github.com/Radiquum/anixart-patcher.git synced 2025-09-05 10:45:32 +05:00

fix: end timer before apk signing in normal mode

This commit is contained in:
Kentai Radiquum 2025-09-02 10:22:18 +05:00
parent 33df23c86a
commit 1c4df94d89
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -66,10 +66,13 @@ if __name__ == "__main__":
if not args.no_compile:
compile_apk(f"{apk.removesuffix(".apk")}-patched.apk")
sign_apk(f"{apk.removesuffix(".apk")}-patched.apk")
end_time = time()
if not args.no_compile:
sign_apk(f"{apk.removesuffix(".apk")}-patched.apk")
log.info("Finished")
log.info(f"install this apk file: {apk.removesuffix(".apk")}-patched-aligned-signed.apk")
log.info(f"used and successful patches: {", ".join(statuses_ok)}")