Browse Source

add variant for daily builds

Andrey Filipenkov 2 years ago
parent
commit
c960cb0506
1 changed files with 7 additions and 0 deletions
  1. 7 0
      android/vcmi-app/build.gradle

+ 7 - 0
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) }