This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
Permalink
Cannot retrieve contributors at this time
27 lines (23 sloc)
913 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
android-components/buildSrc/src/main/java/Gecko.kt
Go to fileThis 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 = "85.0.20201208094500" | |
/** | |
* GeckoView Beta Version. | |
*/ | |
const val beta_version = "84.0.20201201213706" | |
/** | |
* GeckoView Release Version. | |
*/ | |
const val release_version = "84.0.20201207203640" | |
} | |
@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}" | |
} |