Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
package org.mozilla.fenix
enum class ReleaseChannel {
Debug,
Nightly,
Beta,
Release;
val isReleased: Boolean
get() =
when (this) {
Debug -> false
else -> true
}
/**
* True if this is a debug release channel, false otherwise.
*
* This constant should often be used instead of [BuildConfig.DEBUG], which indicates if the `debuggable` flag is
* set which can be true even on released channel builds (e.g. performance).
*/
val isDebug: Boolean
get() = !this.isReleased
val isReleaseOrBeta: Boolean
get() = this == Release || this == Beta
val isRelease: Boolean
get() =
when (this) {
Release -> true
else -> false
}
val isBeta: Boolean
get() = this == Beta
val isNightlyOrDebug: Boolean
get() = this == Debug || this == Nightly
}
object Config {
val channel =
when (BuildConfig.BUILD_TYPE) {
"debug" -> ReleaseChannel.Debug
"nightly",
"benchmark" -> ReleaseChannel.Nightly
"beta" -> ReleaseChannel.Beta
"release" -> ReleaseChannel.Release
else -> {
throw IllegalStateException("Unknown build type: ${BuildConfig.BUILD_TYPE}")
}
}
}