导出工程和apk,aab

This commit is contained in:
luojian 2025-07-08 00:17:23 +08:00
parent ced5e1b4bf
commit 6bab66c84d
2 changed files with 42 additions and 2 deletions

View File

@ -31,6 +31,11 @@ class Context:
sdk_version: str = "" sdk_version: str = ""
sdk_prolink_version: str = "" sdk_prolink_version: str = ""
out_project: str = ""
out_debug_apk: str = ""
out_release_apk: str = ""
out_release_aab: str = ""
@classmethod @classmethod
def from_json(cls, json_str: str): def from_json(cls, json_str: str):
data = json.loads(json_str) data = json.loads(json_str)

View File

@ -1,10 +1,17 @@
import os.path import os.path
from scripts.task import Task from scripts.task import Task
from utils import SystemUtils, CommandUtils from utils import SystemUtils, CommandUtils, TimeUtils, FileUtils
from utils.logger_utils import app_logger from utils.logger_utils import app_logger
def find_path(dir_path: str, suffix: str) -> str:
l = list(filter(lambda x: x.endswith(suffix), os.listdir(dir_path)))
if not l:
raise FileNotFoundError("No such file or directory")
return os.path.join(dir_path, l[0])
class ProjectBuild(Task): class ProjectBuild(Task):
""" """
assembleLawnWithQuickstepPlay assembleLawnWithQuickstepPlay
@ -30,7 +37,35 @@ class ProjectBuild(Task):
app_logger().debug(f"build aab return_code = {return_code} stdout = {stdout} stderr = {stderr}") app_logger().debug(f"build aab return_code = {return_code} stdout = {stdout} stderr = {stderr}")
def execute(self): def execute(self):
self.init()
self.save_project()
self.build_apk() self.build_apk()
self.build_aab() self.build_aab()
self.copy_to_out()
pass pass
def init(self):
file_name = f"{self.context.get_app_name()}_{self.context.package_name}_{self.context.version_display_name}({self.context.version_code})_{self.context.local_repo_branch}({self.context.local_repo_commit[:5]})_{TimeUtils.get_current_time_str()}"
self.context.out_project = os.path.join("out", f"{file_name}.zip")
self.context.out_debug_apk = os.path.join("out", f"{file_name}_debug.apk")
self.context.out_release_apk = os.path.join("out", f"{file_name}_release.apk")
self.context.out_release_aab = os.path.join("out", f"{file_name}_release.aab")
pass
def copy_to_out(self):
app_logger().debug(f"copy_to_out start.")
target = f"{self.context.temp_project_path}{os.sep}build{os.sep}outputs{os.sep}apk{os.sep}lawnWithQuickstepPlay{os.sep}debug"
FileUtils.copy(find_path(target, "apk"), self.context.out_debug_apk)
app_logger().debug(f"copy_to_out debug apk = {self.context.out_debug_apk}")
target = f"{self.context.temp_project_path}{os.sep}build{os.sep}outputs{os.sep}apk{os.sep}lawnWithQuickstepPlay{os.sep}release"
FileUtils.copy(find_path(target, "apk"), self.context.out_release_apk)
app_logger().debug(f"copy_to_out release apk = {self.context.out_release_apk}")
target = f"{self.context.temp_project_path}{os.sep}build{os.sep}outputs{os.sep}bundle{os.sep}lawnWithQuickstepPlayRelease"
FileUtils.copy(find_path(target, "aab"), self.context.out_release_aab)
app_logger().debug(f"copy_to_out end.")
pass
def save_project(self):
app_logger().debug(f"save project {self.context.out_project} start.")
FileUtils.compress(self.context.temp_project_path, self.context.out_project)
app_logger().debug(f"save project {self.context.out_project} end.")