mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 18:35:40 +03:00
Disable automatic opt-in screen display.
We want to wait for translations to be available in the project before showing this screen to every users.
This commit is contained in:
parent
f4cfb5d6d3
commit
08def813cc
1 changed files with 4 additions and 1 deletions
|
@ -83,9 +83,12 @@ class HomeActivityViewModel @AssistedInject constructor(
|
||||||
observeInitialSync()
|
observeInitialSync()
|
||||||
checkSessionPushIsOn()
|
checkSessionPushIsOn()
|
||||||
observeCrossSigningReset()
|
observeCrossSigningReset()
|
||||||
observeAnalytics()
|
// Disable Analytics opt-in automatic display
|
||||||
|
// Waiting for translation and for analytic events to be actually sent
|
||||||
|
// observeAnalytics()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Suppress("unused")
|
||||||
private fun observeAnalytics() {
|
private fun observeAnalytics() {
|
||||||
if (analyticsConfig.isEnabled) {
|
if (analyticsConfig.isEnabled) {
|
||||||
analyticsStore.didAskUserConsentFlow
|
analyticsStore.didAskUserConsentFlow
|
||||||
|
|
Loading…
Reference in a new issue