File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed
kotlin/kotli/template/multiplatform/compose/dataflow
resources/kotli/template/multiplatform/compose/userflow/navigation Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11apply from : " ${ project.rootDir} /gradle/kotlin/processor.gradle"
22
33group = ' com.kotlitecture.kotli'
4- version = ' 1.4.1 '
4+ version = ' 1.4.2 '
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import kotli.template.multiplatform.compose.Rules
1111import kotli.template.multiplatform.compose.Tags
1212import kotli.template.multiplatform.compose.platform.client.MobileAndDesktopProcessor
1313import kotlin.reflect.KClass
14+ import kotlin.time.Duration.Companion.hours
1415import kotlin.time.Duration.Companion.minutes
1516
1617object JetpackPagingProcessor : BaseFeatureProcessor() {
@@ -26,7 +27,7 @@ object JetpackPagingProcessor : BaseFeatureProcessor() {
2627 override fun getIntegrationUrl (state : TemplateState ): String =
2728 " https://developer.android.com/topic/libraries/architecture/paging/v3-paged-data"
2829
29- override fun getIntegrationEstimate (state : TemplateState ): Long = 30 .minutes .inWholeMilliseconds
30+ override fun getIntegrationEstimate (state : TemplateState ): Long = 2 .hours .inWholeMilliseconds
3031
3132 override fun dependencies (): List <KClass <out FeatureProcessor >> = listOf (
3233 MobileAndDesktopProcessor ::class ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import kotli.engine.template.rule.RemoveFile
88import kotli.engine.template.rule.RemoveMarkedLine
99import kotli.template.multiplatform.compose.Rules
1010import kotli.template.multiplatform.compose.Tags
11+ import kotlin.time.Duration.Companion.hours
1112import kotlin.time.Duration.Companion.minutes
1213
1314object MultiplatformPagingProcessor : BaseFeatureProcessor() {
@@ -20,7 +21,7 @@ object MultiplatformPagingProcessor : BaseFeatureProcessor() {
2021 override fun getIntegrationUrl (state : TemplateState ): String =
2122 " https://github.com/cashapp/multiplatform-paging?tab=readme-ov-file#usage"
2223
23- override fun getIntegrationEstimate (state : TemplateState ): Long = 30 .minutes .inWholeMilliseconds
24+ override fun getIntegrationEstimate (state : TemplateState ): Long = 2 .hours .inWholeMilliseconds
2425
2526 override fun doRemove (state : TemplateState ) {
2627 state.onApplyRules(
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import kotli.template.multiplatform.compose.dataflow.settings.common.CommonSetti
1414import kotli.template.multiplatform.compose.dataflow.settings.datastore.DataStoreProcessor
1515import kotli.template.multiplatform.compose.showcases.dataflow.settings.SettingsShowcasesProcessor
1616import kotlin.reflect.KClass
17+ import kotlin.time.Duration.Companion.hours
1718import kotlin.time.Duration.Companion.minutes
1819
1920object MultiplatformSettingsProcessor : BaseFeatureProcessor() {
@@ -28,7 +29,7 @@ object MultiplatformSettingsProcessor : BaseFeatureProcessor() {
2829 override fun getIntegrationUrl (state : TemplateState ): String =
2930 " https://github.com/russhwolf/multiplatform-settings?tab=readme-ov-file#no-arg-module"
3031
31- override fun getIntegrationEstimate (state : TemplateState ): Long = 30 .minutes .inWholeMilliseconds
32+ override fun getIntegrationEstimate (state : TemplateState ): Long = 2 .hours .inWholeMilliseconds
3233
3334 override fun dependencies (): List <KClass <out FeatureProcessor >> = listOf (
3435 CommonSettingsProcessor ::class ,
Original file line number Diff line number Diff line change 1- Navigation Bar
1+ Navigation
You can’t perform that action at this time.
0 commit comments