From 0e23e081ce31f343ffad6bb5ea710b2357e0cd9f Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 2 Jul 2024 17:21:03 +0200 Subject: [PATCH] Use different groups for Element Enterprise --- app/build.gradle.kts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index f1d5a97bb6..af70c6ae39 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -153,7 +153,11 @@ android { // artifactType = "AAB" // artifactPath = "$rootDir/app/build/outputs/bundle/nightly/app-nightly.aab" releaseNotesFile = "tools/release/ReleaseNotesNightly.md" - groups = "external-testers" + groups = if (isEnterpriseBuild) { + "enterprise-testers" + } else { + "external-testers" + } // This should not be required, but if I do not add the appId, I get this error: // "App Distribution halted because it had a problem uploading the APK: [404] Requested entity was not found." appId = if (isEnterpriseBuild) {