1
0
Fork 0

Switch to GeckoView 69 Beta.

master
Sebastian Kaspari 2019-07-25 18:31:47 +02:00
parent d1651ecf71
commit d1d91e9e6a
2 changed files with 1 additions and 27 deletions

View File

@ -303,7 +303,7 @@ dependencies {
implementation Deps.mozilla_browser_domains
implementation Deps.mozilla_browser_icons
implementation Deps.mozilla_browser_menu
implementation Deps.mozilla_browser_engine_gecko_release
implementation Deps.mozilla_browser_engine_gecko_beta
implementation Deps.mozilla_browser_search
implementation Deps.mozilla_browser_session
implementation Deps.mozilla_browser_storage_sync
@ -348,11 +348,6 @@ dependencies {
implementation Deps.mozilla_lib_fetch_httpurlconnection
armImplementation Gecko.geckoview_release_arm
aarch64Implementation Gecko.geckoview_release_aarch64
x86Implementation Gecko.geckoview_release_x86
x86_64Implementation Gecko.geckoview_release_x86_64
implementation Deps.androidx_legacy
implementation Deps.androidx_paging
implementation Deps.androidx_preference
@ -441,12 +436,6 @@ task printBuildVariants {
}
}
task printGeckoviewVersions {
doLast {
println "release: " + groovy.json.JsonOutput.toJson(GeckoVersions.release_version)
}
}
def glean_android_components_tag = (
Versions.mozilla_android_components.endsWith('-SNAPSHOT') ?
'master' :

View File

@ -1,15 +0,0 @@
/* 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/. */
object GeckoVersions {
const val release_version = "68.0.20190711090008"
}
@Suppress("MaxLineLength")
object Gecko {
const val geckoview_release_arm = "org.mozilla.geckoview:geckoview-armeabi-v7a:${GeckoVersions.release_version}"
const val geckoview_release_aarch64 = "org.mozilla.geckoview:geckoview-arm64-v8a:${GeckoVersions.release_version}"
const val geckoview_release_x86 = "org.mozilla.geckoview:geckoview-x86:${GeckoVersions.release_version}"
const val geckoview_release_x86_64 = "org.mozilla.geckoview:geckoview-x86_64:${GeckoVersions.release_version}"
}