mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
[fenix] Upgrade to GV 68.0.20190508111321 and fixes for latest A-C 0.52.0 (https://github.com/mozilla-mobile/fenix/pull/2348)
Closes https://github.com/mozilla-mobile/fenix/issues/2342, Closes https://github.com/mozilla-mobile/fenix/issues/2297
This commit is contained in:
parent
0f756b8f1b
commit
34f817ce49
@ -10,10 +10,12 @@ import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.launch
|
||||
import mozilla.components.browser.storage.sync.PlacesBookmarksStorage
|
||||
import mozilla.components.browser.storage.sync.PlacesHistoryStorage
|
||||
import mozilla.components.concept.sync.DeviceType
|
||||
import mozilla.components.feature.sync.BackgroundSyncManager
|
||||
import mozilla.components.feature.sync.GlobalSyncableStoreProvider
|
||||
import mozilla.components.service.fxa.Config
|
||||
import mozilla.components.service.fxa.FxaAccountManager
|
||||
import mozilla.components.service.fxa.manager.DeviceTuple
|
||||
import mozilla.components.service.fxa.manager.FxaAccountManager
|
||||
import org.mozilla.fenix.test.Mockable
|
||||
|
||||
/**
|
||||
@ -49,7 +51,13 @@ class BackgroundServices(
|
||||
it.addStore("bookmarks")
|
||||
}
|
||||
|
||||
val accountManager = FxaAccountManager(context, config, scopes, syncManager).also {
|
||||
val accountManager = FxaAccountManager(
|
||||
context,
|
||||
config,
|
||||
scopes,
|
||||
DeviceTuple("Fenix", DeviceType.MOBILE, emptyList()),
|
||||
syncManager
|
||||
).also {
|
||||
CoroutineScope(Dispatchers.Main).launch { it.initAsync().await() }
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,7 @@ package org.mozilla.fenix.components
|
||||
|
||||
import mozilla.components.feature.accounts.FirefoxAccountsAuthFeature
|
||||
import mozilla.components.feature.tabs.TabsUseCases
|
||||
import mozilla.components.service.fxa.FxaAccountManager
|
||||
import mozilla.components.service.fxa.manager.FxaAccountManager
|
||||
import org.mozilla.fenix.test.Mockable
|
||||
|
||||
/**
|
||||
|
@ -3,7 +3,7 @@
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
object GeckoVersions {
|
||||
const val nightly_version = "68.0.20190503041749"
|
||||
const val nightly_version = "68.0.20190508111321"
|
||||
const val beta_version = "67.0.20190430135507"
|
||||
const val release_version = "66.0.20190322021635"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user