2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-03 23:15:31 +00:00

[fenix] Upgrade to Android Components 75.0.20210413143139

This commit is contained in:
Christian Sadilek 2021-04-13 11:08:33 -04:00
parent 167d925c12
commit 858320fe6b
2 changed files with 4 additions and 2 deletions

View File

@ -35,6 +35,7 @@ import mozilla.components.feature.downloads.DownloadMiddleware
import mozilla.components.feature.logins.exceptions.LoginExceptionStorage
import mozilla.components.feature.media.MediaSessionFeature
import mozilla.components.feature.media.middleware.RecordingDevicesMiddleware
import mozilla.components.feature.prompts.PromptMiddleware
import mozilla.components.feature.pwa.ManifestStorage
import mozilla.components.feature.pwa.WebAppShortcutManager
import mozilla.components.feature.readerview.ReaderViewMiddleware
@ -194,7 +195,8 @@ class Core(
additionalBundledSearchEngineIds = listOf("reddit", "youtube"),
migration = SearchMigration(context)
),
RecordingDevicesMiddleware(context)
RecordingDevicesMiddleware(context),
PromptMiddleware()
)
BrowserStore(

View File

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