-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from stslex/dev
Refactor Paging worker
- Loading branch information
Showing
116 changed files
with
2,170 additions
and
2,185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,6 @@ kotlin { | |
} | ||
} | ||
|
||
jvm("desktop") | ||
|
||
iosX64() | ||
iosArm64() | ||
iosSimulatorArm64() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 0 additions & 5 deletions
5
core/core/src/desktopMain/kotlin/com/stslex/core/core/CommonUtils.desktop.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,6 @@ kotlin { | |
} | ||
} | ||
|
||
jvm("desktop") | ||
|
||
iosX64() | ||
iosArm64() | ||
iosSimulatorArm64() | ||
|
13 changes: 0 additions & 13 deletions
13
core/database/src/desktopMain/kotlin/com/stslex/core/database/di/DatabaseModel.desktop.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,6 @@ kotlin { | |
} | ||
} | ||
|
||
jvm("desktop") | ||
|
||
iosX64() | ||
iosArm64() | ||
iosSimulatorArm64() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
core/ui/src/androidMain/kotlin/com/stslex/core/ui/mvi/StoreExt.android.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.stslex.core.ui.mvi | ||
|
||
import androidx.lifecycle.ViewModel | ||
import org.koin.androidx.viewmodel.dsl.viewModel | ||
import org.koin.core.definition.Definition | ||
import org.koin.core.definition.KoinDefinition | ||
import org.koin.core.module.Module | ||
import org.koin.core.qualifier.Qualifier | ||
|
||
actual inline fun <reified T : ViewModel> Module.viewModelDefinition( | ||
qualifier: Qualifier?, | ||
noinline definition: Definition<T>, | ||
): KoinDefinition<T> = viewModel( | ||
qualifier = qualifier, | ||
definition = definition | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
134 changes: 0 additions & 134 deletions
134
core/ui/src/commonMain/kotlin/com/stslex/core/ui/mvi/BaseStore.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.