Compare commits
No commits in common. "de271eb6b4eeee594aa0886cd2862cb6e89b4076" and "2a5812d404cd2388bab087451173991a6c07b210" have entirely different histories.
de271eb6b4
...
2a5812d404
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"repo_url": "http://192.168.0.200:3000/Faxing/Lawnchair.git",
|
||||
"repo_branch": "touka-dev-3.0",
|
||||
"repo_commit": "",
|
||||
"package_name": "com.emoticon.diy.znfav.launcher.free",
|
||||
"game_type": "unity_native",
|
||||
"version_display_name": "1.0.4",
|
||||
"version_code": 4
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
18
main.py
18
main.py
|
@ -1,6 +1,4 @@
|
|||
import os
|
||||
import argparse
|
||||
import sys
|
||||
|
||||
from scripts.build import run
|
||||
from scripts.context import Context
|
||||
|
@ -8,21 +6,7 @@ from utils import SystemUtils
|
|||
from utils.logger_utils import init
|
||||
|
||||
if __name__ == '__main__':
|
||||
parser = argparse.ArgumentParser(description='构建脚本')
|
||||
parser.add_argument('--config', type=str, help='配置文件', default='build_config.json')
|
||||
|
||||
args = parser.parse_args()
|
||||
config_path = args.config
|
||||
if not config_path.endswith('.json'):
|
||||
config_path += '.json'
|
||||
|
||||
print(config_path)
|
||||
|
||||
if not os.path.exists(config_path):
|
||||
print(f"输入的配置文件不存在 {config_path}")
|
||||
sys.exit(0)
|
||||
|
||||
context = Context.from_json(open(config_path, "r").read())
|
||||
context = Context.from_json(open("build_config.json", "r").read())
|
||||
|
||||
if SystemUtils.is_windows():
|
||||
context.project_original_path = context.project_original_path.replace("/", os.sep)
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
@echo off
|
||||
set HTTP_PROXY=http://127.0.0.1:7897
|
||||
set HTTPS_PROXY=http://127.0.0.1:7897
|
||||
python main.py --config com.emoticon.diy.znfav.launcher.free.json
|
||||
pause
|
|
@ -45,7 +45,6 @@ class ProjectInit(Task):
|
|||
|
||||
# 拉取最新代码
|
||||
repo.remotes.origin.pull()
|
||||
print("当前分支:" + repo.active_branch.name)
|
||||
pass
|
||||
else:
|
||||
raise Exception(f"No commit to {self.context.repo_commit}")
|
||||
|
|
|
@ -94,9 +94,7 @@ def update_gradle_property(content, key, new_value):
|
|||
return updated_content
|
||||
|
||||
|
||||
LAUNCHER_CODE_PATH = f"LauncherCode/src/com/launchercode".replace("/", os.sep)
|
||||
GAME_ACTIVITY_PATH = f"LauncherCode/src/com/launchercode/GameActivity.kt".replace("/", os.sep)
|
||||
GAME_ACTIVITY_PATH_2 = f"LauncherCode/src/com/launchercode/activity/GameActivity.kt".replace("/", os.sep)
|
||||
ANDROID_MANIFEST_PATH = f"lawnchair/AndroidManifest.xml".replace("/", os.sep)
|
||||
STRING_PATH = f"LauncherCode/res/values/strings.xml".replace("/", os.sep)
|
||||
LAUNCER_STRING_PATH = f"LauncherCode/src/com/launchercode/LauncherStringsValue.kt".replace("/", os.sep)
|
||||
|
@ -180,8 +178,7 @@ storePassword=123456
|
|||
|
||||
dst_path = os.path.join(self.context.temp_project_path, f"lawnchair{os.sep}assets")
|
||||
|
||||
for file in list(filter(lambda f: not (f == "google_fonts.json" or f == "pag_wallpaper_slide.pag"),
|
||||
os.listdir(dst_path))):
|
||||
for file in list(filter(lambda f: not (f == "google_fonts.json" or f == "pag_wallpaper_slide.pag"), os.listdir(dst_path))):
|
||||
FileUtils.delete(os.path.join(dst_path, file), True)
|
||||
pass
|
||||
|
||||
|
@ -300,8 +297,6 @@ plugins {
|
|||
image_list = list(map(lambda f: Path(f).stem, os.listdir(target_root_path)))
|
||||
|
||||
for file in os.listdir(dst):
|
||||
if file == ".DS_Store":
|
||||
continue
|
||||
temp_tar = os.path.join(dst, file)
|
||||
temp_dst = os.path.join(target_root_path, file)
|
||||
file_name = Path(file).stem
|
||||
|
@ -360,20 +355,7 @@ plugins {
|
|||
open(os.path.join(self.context.temp_project_path, LAUNCER_STRING_PATH), "w", encoding="utf-8").write(text)
|
||||
pass
|
||||
|
||||
def update_code_dir(self):
|
||||
# code_path = os.path.join(self.context.temp_project_path, GAME_ACTIVITY_PATH)
|
||||
# for i in os.listdir(code_path):
|
||||
# os
|
||||
pass
|
||||
|
||||
def execute(self):
|
||||
self.update_code_dir()
|
||||
global GAME_ACTIVITY_PATH
|
||||
path = os.path.join(self.context.temp_project_path, GAME_ACTIVITY_PATH)
|
||||
if not os.path.exists(path):
|
||||
GAME_ACTIVITY_PATH = GAME_ACTIVITY_PATH_2
|
||||
# GAME_ACTIVITY_PATH = GAME_ACTIVITY_PATH_2
|
||||
pass
|
||||
self.build_gradle_path = os.path.join(self.context.temp_project_path, "build.gradle")
|
||||
self.init_sdk_version()
|
||||
self.update_package_name()
|
||||
|
|
Loading…
Reference in New Issue