Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d848f9a authored by Amit Kumar's avatar Amit Kumar 💻
Browse files

Reformat code

parent 53914100
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
<component name="ProjectCodeStyleConfiguration">
  <code_scheme name="Project" version="173">
    <option name="FORMATTER_TAGS_ENABLED" value="true" />
    <AndroidXmlCodeStyleSettings>
      <option name="LAYOUT_SETTINGS">
        <value>
@@ -30,6 +31,9 @@
    <MarkdownNavigatorCodeStyleSettings>
      <option name="RIGHT_MARGIN" value="72" />
    </MarkdownNavigatorCodeStyleSettings>
    <XML>
      <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
    </XML>
    <codeStyleSettings language="Groovy">
      <indentOptions>
        <option name="CONTINUATION_INDENT_SIZE" value="4" />
@@ -70,7 +74,7 @@
                <AND>
                  <NAME>.*:id</NAME>
                  <XML_ATTRIBUTE />
                  <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
                  <XML_NAMESPACE>http://schemas.android.com/apk/res/android\n</XML_NAMESPACE>
                </AND>
              </match>
            </rule>
@@ -81,7 +85,7 @@
                <AND>
                  <NAME>.*:name</NAME>
                  <XML_ATTRIBUTE />
                  <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
                  <XML_NAMESPACE>http://schemas.android.com/apk/res/android\n</XML_NAMESPACE>
                </AND>
              </match>
            </rule>
@@ -126,7 +130,7 @@
                <AND>
                  <NAME>.*</NAME>
                  <XML_ATTRIBUTE />
                  <XML_NAMESPACE>http://schemas.android.com/apk/res/android</XML_NAMESPACE>
                  <XML_NAMESPACE>http://schemas.android.com/apk/res/android\n</XML_NAMESPACE>
                </AND>
              </match>
              <order>ANDROID_ATTRIBUTE_ORDER</order>
+4 −1
Original line number Diff line number Diff line
@@ -29,7 +29,10 @@ class DashboardViewModel : ViewModel() {
    val actions = _actions.asSharedFlow()

    val dashboardFeature: DashboardFeature by lazy {
        DashboardFeature.create(DashboardFeature.State.InitialState, coroutineScope = viewModelScope)
        DashboardFeature.create(
            DashboardFeature.State.InitialState,
            coroutineScope = viewModelScope
        )
    }

    fun submitAction(action: DashboardFeature.Action) {
+5 −1
Original line number Diff line number Diff line
@@ -37,7 +37,11 @@ class FakeLocationFeature(
    actor: Actor<State, Action, Effect>,
    singleEventProducer: SingleEventProducer<State, Action, Effect, SingleEvent>
) : BaseFeature<FakeLocationFeature.State, FakeLocationFeature.Action, FakeLocationFeature.Effect, FakeLocationFeature.SingleEvent>(
    initialState, actor, reducer, coroutineScope, { message -> Log.d("FakeLocationFeature", message) },
    initialState,
    actor,
    reducer,
    coroutineScope,
    { message -> Log.d("FakeLocationFeature", message) },
    singleEventProducer
) {
    sealed class State {