Move vals at the top of the class.
This commit is contained in:
parent
f670677427
commit
f0bee63d7f
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.
|
// Flag indicating whether we have called bind on the service.
|
||||||
private var bound: Boolean = false
|
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.
|
* 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.
|
* Handler of incoming messages from service.
|
||||||
*/
|
*/
|
||||||
|
|
@ -304,11 +309,6 @@ class DefaultElementClassicConnection(
|
||||||
mutableStateFlow.emit(state)
|
mutableStateFlow.emit(state)
|
||||||
}
|
}
|
||||||
|
|
||||||
private val elementClassicComponent = ComponentName(
|
|
||||||
BuildConfig.elementClassicPackage,
|
|
||||||
ELEMENT_CLASSIC_SERVICE_FULL_CLASS_NAME,
|
|
||||||
)
|
|
||||||
|
|
||||||
private fun Bundle.toElementClassicConnectionState(): ElementClassicConnectionState {
|
private fun Bundle.toElementClassicConnectionState(): ElementClassicConnectionState {
|
||||||
val error = getString(KEY_ERROR_STR)
|
val error = getString(KEY_ERROR_STR)
|
||||||
return if (error != null) {
|
return if (error != null) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue