6.3.3 - pre - 修复 VSCode 插件问题

This commit is contained in:
SuperMonster003
2023-07-12 15:20:05 +08:00
parent 7b1c8bddc8
commit 26eb5a6db5
23 changed files with 1036 additions and 1056 deletions

View File

@@ -361,6 +361,7 @@ android {
}
}
buildConfigField("String", "VERSION_DATE", "\"${Utils.getDateString("MMM d, yyyy", "GMT+08:00")}\"")
buildConfigField("String", "VSCODE_EXT_REQUIRED_VERSION", "\"${versions.vscodeExtRequiredVersion}\"")
}
applicationVariants.all {
@@ -460,6 +461,7 @@ class Versions(filePath: String) {
val sdkVersionCompile = properties["COMPILE_SDK_VERSION"].let { it as String }.toInt()
val appVersionName = properties["VERSION_NAME"] as String
val appVersionCode = properties["VERSION_BUILD"].let { it as String }.toInt()
val vscodeExtRequiredVersion = properties["VSCODE_EXT_REQUIRED_VERSION"] as String
private val javaVersionRaw = properties["JAVA_VERSION"] as String