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:
parent
33df23c86a
commit
1c4df94d89
1 changed files with 4 additions and 1 deletions
5
main.py
5
main.py
|
@ -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)}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue