From c960cb0506582edc7a9bdb1d65a21b970c382710 Mon Sep 17 00:00:00 2001 From: Andrey Filipenkov Date: Sun, 26 Feb 2023 12:53:20 +0300 Subject: [PATCH] add variant for daily builds --- android/vcmi-app/build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/android/vcmi-app/build.gradle b/android/vcmi-app/build.gradle index 671556fc0..93d73395b 100644 --- a/android/vcmi-app/build.gradle +++ b/android/vcmi-app/build.gradle @@ -43,6 +43,13 @@ android { debugSymbolLevel 'symbol_table' } } + daily { + initWith release + applicationIdSuffix '.daily' + manifestPlaceholders = [ + applicationLabel: 'VCMI daily', + ] + } } applicationVariants.all { variant -> RenameOutput(project.archivesBaseName, variant) }