From f0ca8078093b5fecab99f73ec6d02dd8773b2268 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Thu, 9 Mar 2023 12:20:01 +0100 Subject: [PATCH] Fix application distribution for nightly build. --- app/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6d8338c2f1..827e147322 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -125,6 +125,10 @@ android { firebaseAppDistribution { artifactType = "APK" + // We upload the universal APK to fix this error: + // "App Distribution found more than 1 output file for this variant. + // Please contact firebase-support@google.com for help using APK splits with App Distribution." + artifactPath = "$rootDir/app/build/outputs/apk/nightly/app-universal-nightly.apk" // This file will be generated by the GitHub action releaseNotesFile = "CHANGES_NIGHTLY.md" groups = "external-testers"