From e25a74575e4d43023d2da1ce59b4183583c1f2c3 Mon Sep 17 00:00:00 2001 From: AeonLucid Date: Wed, 5 Jun 2019 00:58:43 +0200 Subject: [PATCH] Update build.py --- build.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.py b/build.py index ceb0ea4..a9dfefc 100644 --- a/build.py +++ b/build.py @@ -52,13 +52,13 @@ def extract_file(archive_path, dest_path): def create_module_prop(path, frida_release): # Create module.prop file. module_prop = """id=magiskfrida - name=MagiskFrida - version=v{0} - versionCode={1} - author=AeonLucid - description=Runs frida-server on boot as root with magisk. - support=https://github.com/AeonLucid/MagiskFrida/issues - minMagisk=1530""".format(frida_release, frida_release.replace(".", "")) +name=MagiskFrida +version=v{0} +versionCode={1} +author=AeonLucid +description=Runs frida-server on boot as root with magisk. +support=https://github.com/AeonLucid/MagiskFrida/issues +minMagisk=1530""".format(frida_release, frida_release.replace(".", "")) with open(os.path.join(path, "module.prop"), "w", newline='\n') as f: f.write(module_prop)