You get latest content at a time when data will updated
Automaticaly take backup as par schedule
Allow to show public user message
你可以修改函数来捕获错误,并使用 `rty` 处理错误,同时确保命令行窗口不会在报错时关闭。下面是修改后的代码...
你可以修改函数来捕获错误,并使用 `rty` 处理错误,同时确保命令行窗口不会在报错时关闭。下面是修改后的代码:
import subprocess
import sys
def createApk_release():
try:
printGreen("正在打包apk...!\n".decode('utf8'))
cmd = "cocos.bat compile -p android --ap android-20 -s " + sys.path[0] + " --compile-script 1 --lua-encrypt --lua-encrypt-key " + xxtea_key + " --lua-encrypt-sign " + xxtea_sign + " -m release"
pro = subprocess.Popen(cmd, shell=True)
pro.wait()
if pro.returncode != 0:
raise Exception("APK 打包失败,错误代码:{}".format(pro.returncode))
except Exception as e:
print(e)
rty(e)
– 添加了 `try-except` 块来捕获并抛出异常。
– 使用 `rty` 进行错误抛出,命令行窗口在报错时不会关闭。
Tags: 打包