Update GeckoView (Nightly) to 124.0.20240130045011. (https://github.com/mozilla-mobil...
[gecko.git] / mobile / android / android-components / plugins / dependencies / src / main / java / Gecko.kt
blob9d98b1f1ef7d506129cda6ba8fb464d80c115a35
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 /**
6  * Gecko version and release channel constants used by this version of Android Components.
7  */
8 object Gecko {
9     /**
10      * GeckoView Version.
11      */
12     const val version = "124.0.20240130045011"
14     /**
15      * GeckoView channel
16      */
17     val channel = GeckoChannel.NIGHTLY
20 /**
21  * Enum for GeckoView release channels.
22  */
23 enum class GeckoChannel(
24     val artifactName: String,
25 ) {
26     NIGHTLY("geckoview-nightly-omni"),
27     BETA("geckoview-beta-omni"),
28     RELEASE("geckoview-omni"),