Issue #12731: Disable suspending of engine sessions under memory pressure in Nightly

upstream-sync
Sebastian Kaspari 3 years ago committed by mergify[bot]
parent 548efefcbb
commit e341109ced

@ -216,7 +216,15 @@ class Core(
)
BrowserStore(
middleware = middlewareList + EngineMiddleware.create(engine)
middleware = middlewareList + EngineMiddleware.create(
engine,
// We are disabling automatic suspending of engine sessions under memory pressure
// in Nightly as a test. Instead we solely rely on GeckoView and the Android system
// to reclaim memory when needed.
// https://github.com/mozilla-mobile/fenix/issues/12731
// https://github.com/mozilla-mobile/android-components/issues/11300
trimMemoryAutomatically = Config.channel.isReleaseOrBeta
)
).apply {
// Install the "icons" WebExtension to automatically load icons for every visited website.
icons.install(engine, this)

@ -3,5 +3,5 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
object AndroidComponents {
const val VERSION = "96.0.20211123143336"
const val VERSION = "96.0.20211123190119"
}

Loading…
Cancel
Save