Permalink
Cannot retrieve contributors at this time
27 lines (23 sloc)
913 Bytes
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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 | |
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
internal object GeckoVersions { | |
/** | |
* GeckoView Nightly Version. | |
*/ | |
const val nightly_version = "80.0.20200720094507" | |
/** | |
* GeckoView Beta Version. | |
*/ | |
const val beta_version = "79.0.20200717001501" | |
/** | |
* GeckoView Release Version. | |
*/ | |
const val release_version = "78.0.20200708170202" | |
} | |
@Suppress("Unused", "MaxLineLength") | |
object Gecko { | |
const val geckoview_nightly = "org.mozilla.geckoview:geckoview-nightly:${GeckoVersions.nightly_version}" | |
const val geckoview_beta = "org.mozilla.geckoview:geckoview-beta:${GeckoVersions.beta_version}" | |
const val geckoview_release = "org.mozilla.geckoview:geckoview:${GeckoVersions.release_version}" | |
} |