Fix nightly
This commit is contained in:
parent
1f43dfbc6e
commit
e7db7e375c
1 changed files with 6 additions and 1 deletions
|
|
@ -59,13 +59,18 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
register("nightly") {
|
register("nightly") {
|
||||||
initWith(getByName("release"))
|
val release = getByName("release")
|
||||||
|
initWith(release)
|
||||||
applicationIdSuffix = ".nightly"
|
applicationIdSuffix = ".nightly"
|
||||||
versionNameSuffix = "-nightly"
|
versionNameSuffix = "-nightly"
|
||||||
resValue("string", "app_name", "ElementX nightly")
|
resValue("string", "app_name", "ElementX nightly")
|
||||||
matchingFallbacks += listOf("release")
|
matchingFallbacks += listOf("release")
|
||||||
signingConfig = signingConfigs.getByName("nightly")
|
signingConfig = signingConfigs.getByName("nightly")
|
||||||
|
|
||||||
|
postprocessing {
|
||||||
|
initWith(release.postprocessing)
|
||||||
|
}
|
||||||
|
|
||||||
firebaseAppDistribution {
|
firebaseAppDistribution {
|
||||||
artifactType = "APK"
|
artifactType = "APK"
|
||||||
// releaseNotesFile = TODO
|
// releaseNotesFile = TODO
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue