Skip to content

Commit b2d4985

Browse files
authored
Merge pull request #5272 from element-hq/feature/bma/iterateOnBuildChain
Iterate on build chain
2 parents 27e0996 + 217490b commit b2d4985

File tree

7 files changed

+4
-2
lines changed

7 files changed

+4
-2
lines changed

app/build.gradle.kts

Lines changed: 3 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"
@@ -260,6 +261,7 @@ dependencies {
260261
allEnterpriseImpl(project)
261262
implementation(projects.appicon.enterprise)
262263
} else {
264+
implementation(projects.features.enterprise.implFoss)
263265
implementation(projects.appicon.element)
264266
}
265267
allFeaturesImpl(project)

enterprise

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)