Обновление вывода информации о патчах, добавление патча лайков/дизлайков
This commit is contained in:
@@ -67,3 +67,11 @@ def find_and_replace_smali_line(
|
||||
def float_to_hex(f):
|
||||
b = struct.pack(">f", f)
|
||||
return b.hex()
|
||||
|
||||
|
||||
def quick_replace(file: str) -> None:
|
||||
content = ""
|
||||
with open(file, "r", encoding="utf-8") as smali:
|
||||
content = smali.read()
|
||||
with open(file, "w", encoding="utf-8") as f:
|
||||
f.writelines(content)
|
||||
|
||||
Reference in New Issue
Block a user