修复巨大bug

This commit is contained in:
2022-02-15 21:56:32 +08:00
parent c53ad469e5
commit 72cf1e0881
8 changed files with 19 additions and 4 deletions

View File

@@ -72,6 +72,10 @@ def BuildApkDeb(apkPath):
else:
apkPackageNameNew = GetApkPackageName(apkPath, False)
apkPackageVersion = GetApkVersion(apkPath)
if apkPackageVersion[0].upper() == "V":
package = list(apkPackageVersion)
package.pop(0)
apkPackageVersion = "".join(package)
apkChineseLabel = GetApkChineseLabel(apkPath)
apkActivityName = GetApkActivityName(apkPath)
iconSavePath = "{}/usr/share/uengine/icons/{}.png".format(tempPath, apkPackageNameNew)