混淆application

This commit is contained in:
luojian 2025-07-11 10:12:01 +08:00
parent eac18b1266
commit 951b07ddf4
1 changed files with 5 additions and 0 deletions

View File

@ -65,6 +65,9 @@ launchercode = "launchercode"
lawn_layout = "res/layout".replace("/", os.sep)
qucikset_manifest = "quickstep/AndroidManifest-launcher.xml".replace("/", os.sep)
lawn_manifest = "AndroidManifest.xml".replace("/", os.sep)
class ProjectProguard(Task):
def __init__(self, context: Context):
@ -168,6 +171,8 @@ class ProjectProguard(Task):
self.update_proguard(os.path.join(self.context.temp_project_path, xml_path))
self.update_proguard(os.path.join(self.context.temp_project_path, launcher_code_path))
self.update_proguard(os.path.join(self.context.temp_project_path, src_code_path))
self.update_proguard(os.path.join(self.context.temp_project_path, qucikset_manifest))
self.update_proguard(os.path.join(self.context.temp_project_path, lawn_manifest))
self.update_proguard(os.path.join(self.context.temp_project_path, lawn_layout))