Skip to content

Commit 63fa915

Browse files
committed
Improve log to see the build type.
1 parent 27e0996 commit 63fa915

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ android {
103103
}
104104

105105
val baseAppName = BuildTimeConfig.APPLICATION_NAME
106-
logger.warnInBox("Building ${defaultConfig.applicationId} ($baseAppName)")
106+
val buildType = if (isEnterpriseBuild) "Enterprise" else "FOSS"
107+
logger.warnInBox("Building ${defaultConfig.applicationId} ($baseAppName) [$buildType]")
107108

108109
buildTypes {
109110
val oidcRedirectSchemeBase = BuildTimeConfig.METADATA_HOST_REVERSED ?: "io.element.android"

0 commit comments

Comments
 (0)