Move vals at the top of the class.
This commit is contained in:
parent
53c20f3f25
commit
76de9db94e
1 changed files with 8 additions and 8 deletions
|
|
@ -80,6 +80,14 @@ class DefaultElementClassicConnection(
|
|||
// Flag indicating whether we have called bind on the service.
|
||||
private var bound: Boolean = false
|
||||
|
||||
private val mutableStateFlow = MutableStateFlow<ElementClassicConnectionState>(ElementClassicConnectionState.Idle)
|
||||
override val stateFlow = mutableStateFlow.asStateFlow()
|
||||
|
||||
private val elementClassicComponent = ComponentName(
|
||||
BuildConfig.elementClassicPackage,
|
||||
ELEMENT_CLASSIC_SERVICE_FULL_CLASS_NAME,
|
||||
)
|
||||
|
||||
/**
|
||||
* Class for interacting with the main interface of the service.
|
||||
*/
|
||||
|
|
@ -192,9 +200,6 @@ class DefaultElementClassicConnection(
|
|||
}
|
||||
}
|
||||
|
||||
private val mutableStateFlow = MutableStateFlow<ElementClassicConnectionState>(ElementClassicConnectionState.Idle)
|
||||
override val stateFlow = mutableStateFlow.asStateFlow()
|
||||
|
||||
/**
|
||||
* Handler of incoming messages from service.
|
||||
*/
|
||||
|
|
@ -304,11 +309,6 @@ class DefaultElementClassicConnection(
|
|||
mutableStateFlow.emit(state)
|
||||
}
|
||||
|
||||
private val elementClassicComponent = ComponentName(
|
||||
BuildConfig.elementClassicPackage,
|
||||
ELEMENT_CLASSIC_SERVICE_FULL_CLASS_NAME,
|
||||
)
|
||||
|
||||
private fun Bundle.toElementClassicConnectionState(): ElementClassicConnectionState {
|
||||
val error = getString(KEY_ERROR_STR)
|
||||
return if (error != null) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue