Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
Permalink
v69.0.0
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
27 lines (23 sloc) 913 Bytes
/* 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}"
}