Skip to content

Commit

Permalink
remove redundant 'Meta'
Browse files Browse the repository at this point in the history
  • Loading branch information
Larvan2 committed Sep 11, 2024
1 parent 3cc77c7 commit e3d92ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ subprojects {
create("meta-alpha") {
isDefault = true
dimension = flavorDimensionList[0]
versionNameSuffix = ".Meta-Alpha"
versionNameSuffix = ".Alpha"

buildConfigField("boolean", "PREMIUM", "Boolean.parseBoolean(\"false\")")

if (isApp) {
applicationIdSuffix = ".meta"
applicationIdSuffix = ".alpha"
}
}

Expand Down
2 changes: 1 addition & 1 deletion core/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ string (REGEX REPLACE "[\n\t\r]" "" COMPILE_TIME ${COMPILE_TIME})
string(REGEX REPLACE "\"" "" COMPILE_TIME ${COMPILE_TIME})

# 生成版本信息
set(GIT_VERSION "Meta_${CURRENT_BRANCH}_${COMMIT_HASH}_${COMPILE_TIME}")
set(GIT_VERSION "${CURRENT_BRANCH}_${COMMIT_HASH}_${COMPILE_TIME}")
message(STATUS "version info = ${GIT_VERSION}")

# 去除空格
Expand Down

0 comments on commit e3d92ac

Please sign in to comment.