diff --git a/app/src/main/java/com/ahmadkharfan/androidstudiolite/di/GitModule.kt b/app/src/main/java/com/ahmadkharfan/androidstudiolite/di/GitModule.kt index 584dd320..974f6ede 100644 --- a/app/src/main/java/com/ahmadkharfan/androidstudiolite/di/GitModule.kt +++ b/app/src/main/java/com/ahmadkharfan/androidstudiolite/di/GitModule.kt @@ -22,26 +22,12 @@ import com.ahmadkharfan.androidstudiolite.domain.repository.GitOperationMonitor import com.ahmadkharfan.androidstudiolite.domain.repository.WorkspaceWriteGate import com.ahmadkharfan.androidstudiolite.domain.usecase.CloneProjectUseCase import com.ahmadkharfan.androidstudiolite.domain.usecase.ProjectPathResolver -import com.ahmadkharfan.androidstudiolite.feature.projects.clonerepo.CloneRepoViewModel -import com.ahmadkharfan.androidstudiolite.feature.editor.assets.AssetsViewModel -import com.ahmadkharfan.androidstudiolite.feature.git.api.GitPanelApi -import com.ahmadkharfan.androidstudiolite.feature.git.GitPanelApiImpl -import com.ahmadkharfan.androidstudiolite.feature.git.GitPanelViewModel -import com.ahmadkharfan.androidstudiolite.feature.git.diff.GitDiffViewModel -import com.ahmadkharfan.androidstudiolite.feature.git.history.GitBlameViewModel -import com.ahmadkharfan.androidstudiolite.feature.git.history.GitHistoryViewModel -import com.ahmadkharfan.androidstudiolite.feature.git.refs.GitRefsViewModel -import com.ahmadkharfan.androidstudiolite.feature.git.conflict.GitConflictViewModel -import com.ahmadkharfan.androidstudiolite.feature.settings.gitauth.GitAuthSettingsViewModel import org.koin.android.ext.koin.androidContext -import org.koin.core.module.dsl.viewModel -import org.koin.core.module.dsl.viewModelOf import org.koin.dsl.module private val Context.gitAuthorDataStore: DataStore by preferencesDataStore(name = "git_author") val gitModule = module { - single { GitPanelApiImpl() } single { EncryptedGitCredentialStore(androidContext()) } single { GitHubDeviceFlowAuthenticator( @@ -75,75 +61,7 @@ val gitModule = module { } - viewModelOf(::CloneRepoViewModel) - viewModel { params -> - GitPanelViewModel( - projectId = params.get(), - projectPathResolver = get(), - gitRepository = get(), - operationMonitor = get(), - credentialStore = get(), - authenticator = get(), - ) - } - viewModel { params -> - GitDiffViewModel( - projectId = params[0], - path = params[1], - target = params[2], - commitId = params.get(3).takeIf { it.isNotBlank() }, - projectPathResolver = get(), - gitRepository = get(), - ) - } - viewModel { params -> - GitHistoryViewModel( - projectId = params[0], - - requestedPath = params.get(1).takeIf { it.isNotBlank() }, - projectPathResolver = get(), - gitRepository = get(), - ) - } - viewModel { params -> - GitBlameViewModel( - projectId = params[0], - requestedPath = params[1], - projectPathResolver = get(), - gitRepository = get(), - ) - } - viewModel { params -> - GitRefsViewModel( - projectId = params[0], - mode = params[1], - projectPathResolver = get(), - gitRepository = get(), - credentialStore = get(), - authenticator = get(), - ) - } - viewModel { params -> - GitConflictViewModel( - projectId = params.get(), - projectPathResolver = get(), - gitRepository = get(), - ) - } - viewModel { params -> - AssetsViewModel( - projectId = params.get(), - projectPathResolver = get(), - ) - } - viewModel { - GitAuthSettingsViewModel( - credentialStore = get(), - authenticator = get(), - gitAuthorStore = get(), - ) - } } diff --git a/app/src/main/java/com/ahmadkharfan/androidstudiolite/di/KoinModules.kt b/app/src/main/java/com/ahmadkharfan/androidstudiolite/di/KoinModules.kt index 8558267d..225546d2 100644 --- a/app/src/main/java/com/ahmadkharfan/androidstudiolite/di/KoinModules.kt +++ b/app/src/main/java/com/ahmadkharfan/androidstudiolite/di/KoinModules.kt @@ -2,6 +2,7 @@ package com.ahmadkharfan.androidstudiolite.di import com.ahmadkharfan.androidstudiolite.core.network.NetworkMonitor import com.ahmadkharfan.androidstudiolite.feature.editor.di.editorModule +import com.ahmadkharfan.androidstudiolite.feature.git.di.gitPresentationModule import com.ahmadkharfan.androidstudiolite.feature.onboarding.di.onboardingModule import com.ahmadkharfan.androidstudiolite.feature.projects.di.projectsModule import com.ahmadkharfan.androidstudiolite.feature.settings.di.settingsModule @@ -20,6 +21,7 @@ private val featureModules = listOf( projectsModule, terminalFeatureModule, editorModule, + gitPresentationModule, ) val appModules = listOf(dataModule, gradleModule) diff --git a/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.dex b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.dex index d5299909..e1c196ac 100644 Binary files a/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.dex and b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.dex differ diff --git a/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$0.globals b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$0.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$0.globals differ diff --git a/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$1.globals b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$1.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$1.globals differ diff --git a/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$2.globals b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$2.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$2.globals differ diff --git a/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$3.globals b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$3.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt$$InternalSyntheticLambda$2$5e6e482122555406ffdab917a6a803e88f030b8e2d2aed741b55619167522c24$3.globals differ diff --git a/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin index 7caa120d..7d774395 100644 Binary files a/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin and b/feature/editor/presentation/build/.transforms/f2c9ce196b82e5845fea8445c9f2c1b4/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ diff --git a/feature/editor/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.class b/feature/editor/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.class index b7ef2c90..889fa94c 100644 Binary files a/feature/editor/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.class and b/feature/editor/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.class differ diff --git a/feature/editor/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/feature/editor/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar index 5e46aad2..3e0633cb 100644 Binary files a/feature/editor/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar and b/feature/editor/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ diff --git a/feature/editor/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.class b/feature/editor/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.class index b7ef2c90..889fa94c 100644 Binary files a/feature/editor/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.class and b/feature/editor/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModuleKt.class differ diff --git a/feature/editor/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/feature/editor/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar index 2fe6c15d..77cd0104 100644 Binary files a/feature/editor/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar and b/feature/editor/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab index 4ec53fb6..a69ea625 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at index 487d323f..77ffe407 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab index d9843741..2c6dd12c 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at index 84e57c57..7118009e 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab index 8190d171..f7045187 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at index c8973a7d..2be90da8 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab index 45668e62..ed189827 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at index ca37a15d..5b953431 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab index df879bb0..0c202638 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at index 91d7b232..af063ed1 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab index d627d6de..49a7564b 100644 --- a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +++ b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab @@ -1,2 +1,2 @@ -63 +64 0 \ No newline at end of file diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab index 29ddf6ba..43408d65 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at index 2690641d..e33a6cea 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab index 8c0193fe..8df90e6e 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream index cbc7251b..462c498a 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len index 2ea73058..30b8abeb 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len index bcf25234..66444d2c 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at index ee0b5e93..1cbea442 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i index 41f2009e..03f494eb 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab index 748a2d89..5300f9b0 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream index 72539ebd..0d40d857 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len index d9149daa..e5f10286 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len index 05f53c58..56958e96 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at index 28c21b9c..1ffee2db 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i index d38c8653..1d82f1c8 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin index fe4d62fd..7593583a 100644 Binary files a/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin and b/feature/editor/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ diff --git a/feature/editor/presentation/build/reports/detekt/detekt.html b/feature/editor/presentation/build/reports/detekt/detekt.html index 4f7463df..7566c393 100644 --- a/feature/editor/presentation/build/reports/detekt/detekt.html +++ b/feature/editor/presentation/build/reports/detekt/detekt.html @@ -170,9 +170,9 @@

Complexity Report

    -
  • 12,749 lines of code (loc)
  • -
  • 11,938 source lines of code (sloc)
  • -
  • 8,817 logical lines of code (lloc)
  • +
  • 12,753 lines of code (loc)
  • +
  • 11,942 source lines of code (sloc)
  • +
  • 8,819 logical lines of code (lloc)
  • 2 comment lines of code (cloc)
  • 2,748 cyclomatic complexity (mcc)
  • 1,609 cognitive complexity
  • @@ -188,7 +188,7 @@

    Findings

    Total: 0
    -generated with detekt version 1.23.8 on 2026-07-30 08:30:57 UTC. +generated with detekt version 1.23.8 on 2026-07-30 08:49:50 UTC. diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/-pijNCGAqVQ/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/-pijNCGAqVQ/index.html index 1a1a1a8f..710418d4 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/-pijNCGAqVQ/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/-pijNCGAqVQ/index.html @@ -59,7 +59,7 @@

    summary

    -
    0.016s
    +
    0.024s

    duration

    @@ -94,7 +94,7 @@

    summary

    1 0 0 -0.001s +0s 100% @@ -103,7 +103,7 @@

    summary

    1 0 0 -0.002s +0s 100% @@ -112,7 +112,7 @@

    summary

    1 0 0 -0s +0.001s 100% @@ -121,7 +121,7 @@

    summary

    1 0 0 -0s +0.001s 100% @@ -148,7 +148,7 @@

    summary

    1 0 0 -0.001s +0.005s 100% @@ -175,7 +175,7 @@

    summary

    1 0 0 -0.001s +0s 100% @@ -193,7 +193,7 @@

    summary

    1 0 0 -0.004s +0.001s 100% @@ -202,7 +202,7 @@

    summary

    1 0 0 -0s +0.002s 100% @@ -229,7 +229,7 @@

    summary

    1 0 0 -0s +0.001s 100% @@ -283,7 +283,7 @@

    summary

    1 0 0 -0.003s +0.001s 100% @@ -308,7 +308,7 @@

    summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/1Fkyp-_-sGc/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/1Fkyp-_-sGc/index.html index 0c62ea90..6a9cf66f 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/1Fkyp-_-sGc/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/1Fkyp-_-sGc/index.html @@ -59,7 +59,7 @@

summary

-
0.015s
+
0.030s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.002s +0.001s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.002s +0.003s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.007s +0.011s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0s +0.012s 100% @@ -137,7 +137,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/4B0iI80TQyw/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/4B0iI80TQyw/index.html index 33e3cb4e..6abd8e1e 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/4B0iI80TQyw/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/4B0iI80TQyw/index.html @@ -59,7 +59,7 @@

summary

-
0.001s
+
0.008s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0.003s 100% @@ -139,7 +139,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -155,7 +155,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/4SUFQfmjs38/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/4SUFQfmjs38/index.html index 7ddd6e71..7b7ab360 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/4SUFQfmjs38/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/4SUFQfmjs38/index.html @@ -59,7 +59,7 @@

summary

-
0.007s
+
0.011s

duration

@@ -103,7 +103,7 @@

summary

1 0 0 -0.004s +0.005s 100% @@ -119,7 +119,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/691YUOWevyg/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/691YUOWevyg/index.html index ea421fa7..1c114593 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/691YUOWevyg/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/691YUOWevyg/index.html @@ -59,7 +59,7 @@

summary

-
0.022s
+
0.015s

duration

@@ -103,7 +103,7 @@

summary

1 0 0 -0.005s +0.001s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.002s +0.001s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.011s +0.008s 100% @@ -146,7 +146,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/9-z8IjlVIYQ/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/9-z8IjlVIYQ/index.html index 1e0735a8..1a3e9e45 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/9-z8IjlVIYQ/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/9-z8IjlVIYQ/index.html @@ -59,7 +59,7 @@

summary

-
0.018s
+
0.068s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.011s +0.049s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.004s +0.015s 100% @@ -128,7 +128,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/GYIP1XHT8nc/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/GYIP1XHT8nc/index.html index b60d0340..e8821461 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/GYIP1XHT8nc/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/GYIP1XHT8nc/index.html @@ -59,7 +59,7 @@

summary

-
0.053s
+
0.102s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.040s +0.072s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.010s +0.016s 100% @@ -137,7 +137,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/JcNTR_ScIxw/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/JcNTR_ScIxw/index.html index b35358df..97788e5d 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/JcNTR_ScIxw/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/JcNTR_ScIxw/index.html @@ -59,7 +59,7 @@

summary

-
0.012s
+
0.025s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.012s +0.023s 100% @@ -110,7 +110,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/Jp4QrwKmEY8/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/Jp4QrwKmEY8/index.html index e7ed1146..8c0e7ba2 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/Jp4QrwKmEY8/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/Jp4QrwKmEY8/index.html @@ -59,7 +59,7 @@

summary

-
0.038s
+
0.095s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.023s +0.058s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.002s +0.004s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.001s +0.015s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.001s +0.004s 100% @@ -139,7 +139,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -148,7 +148,7 @@

summary

1 0 0 -0.001s +0.003s 100% @@ -164,7 +164,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/QeE7JJHDM08/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/QeE7JJHDM08/index.html index f148c370..ac89d4cf 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/QeE7JJHDM08/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/QeE7JJHDM08/index.html @@ -59,7 +59,7 @@

summary

-
0.010s
+
0.034s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0s +0.003s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0s +0.005s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0s +0.002s 100% @@ -148,7 +148,7 @@

summary

1 0 0 -0.002s +0.001s 100% @@ -157,7 +157,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -166,7 +166,7 @@

summary

1 0 0 -0.001s +0.003s 100% @@ -175,7 +175,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -184,7 +184,7 @@

summary

1 0 0 -0.001s +0.004s 100% @@ -202,7 +202,7 @@

summary

1 0 0 -0.001s +0.003s 100% @@ -218,7 +218,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/RBDoidYPJhQ/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/RBDoidYPJhQ/index.html index e6c22257..8610b657 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/RBDoidYPJhQ/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/RBDoidYPJhQ/index.html @@ -59,7 +59,7 @@

summary

-
0.080s
+
0.155s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.058s +0.107s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.002s +0.007s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.005s +0.008s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.006s +0.010s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.008s +0.018s 100% @@ -146,7 +146,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/RL9ujXGc3QY/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/RL9ujXGc3QY/index.html index 131caf51..f327f4ed 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/RL9ujXGc3QY/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/RL9ujXGc3QY/index.html @@ -59,7 +59,7 @@

summary

-
0.005s
+
0.004s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.002s +0.001s 100% @@ -119,7 +119,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/SL23-D3eIf4/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/SL23-D3eIf4/index.html index 65576705..8a3f3b99 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/SL23-D3eIf4/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/SL23-D3eIf4/index.html @@ -59,7 +59,7 @@

summary

-
0.003s
+
0.023s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0s +0.018s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -148,7 +148,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -182,7 +182,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/V0UHM_otJYI/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/V0UHM_otJYI/index.html index a5111748..07b4fbe9 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/V0UHM_otJYI/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/V0UHM_otJYI/index.html @@ -59,7 +59,7 @@

summary

-
0.049s
+
0.127s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.031s +0.059s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.004s +0.012s 100% @@ -139,7 +139,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -148,7 +148,7 @@

summary

1 0 0 -0s +0.003s 100% @@ -157,7 +157,7 @@

summary

1 0 0 -0s +0.002s 100% @@ -184,7 +184,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -202,7 +202,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -218,7 +218,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/_CRq7Zy-Xdk/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/_CRq7Zy-Xdk/index.html index 854c8378..c0d18a55 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/_CRq7Zy-Xdk/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/_CRq7Zy-Xdk/index.html @@ -59,7 +59,7 @@

summary

-
0.024s
+
0.036s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.001s +0.003s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.002s +0.001s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -166,7 +166,7 @@

summary

1 0 0 -0.002s +0.001s 100% @@ -175,7 +175,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -184,7 +184,7 @@

summary

1 0 0 -0s +0.002s 100% @@ -193,7 +193,7 @@

summary

1 0 0 -0.001s +0.006s 100% @@ -202,7 +202,7 @@

summary

1 0 0 -0.002s +0s 100% @@ -211,7 +211,7 @@

summary

1 0 0 -0.003s +0.002s 100% @@ -220,7 +220,7 @@

summary

1 0 0 -0.001s +0.003s 100% @@ -229,7 +229,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -238,7 +238,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -247,7 +247,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -272,7 +272,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/aZIDEPQ24cY/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/aZIDEPQ24cY/index.html index 4fceb118..3b4ab84c 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/aZIDEPQ24cY/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/aZIDEPQ24cY/index.html @@ -59,7 +59,7 @@

summary

-
0.011s
+
0.035s

duration

@@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0.003s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.005s +0.026s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.001s +0.003s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.002s +0.001s 100% @@ -155,7 +155,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/cJ1wkuSeFGk/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/cJ1wkuSeFGk/index.html index 9bea5cd4..a5800e5c 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/cJ1wkuSeFGk/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/cJ1wkuSeFGk/index.html @@ -59,7 +59,7 @@

summary

-
0.002s
+
0.028s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.001s +0.012s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0s +0.003s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0s +0.008s 100% @@ -139,7 +139,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -155,7 +155,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/f7bO8sFYzJM/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/f7bO8sFYzJM/index.html index f197d435..57b99290 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/f7bO8sFYzJM/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/f7bO8sFYzJM/index.html @@ -59,7 +59,7 @@

summary

-
0.006s
+
0.001s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -137,7 +137,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/index.html index 041f52bd..2d84e7ec 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/index.html @@ -56,7 +56,7 @@

summary

-
2.796s
+
7.746s

duration

@@ -93,7 +93,7 @@

summary

13 0 0 -0.049s +0.127s 100% @@ -104,7 +104,7 @@

summary

3 0 0 -0.044s +0.189s 100% @@ -115,7 +115,7 @@

summary

4 0 0 -0.053s +0.102s 100% @@ -126,7 +126,7 @@

summary

1 0 0 -0.354s +0.505s 100% @@ -137,7 +137,7 @@

summary

4 0 0 -0.062s +0.346s 100% @@ -148,7 +148,7 @@

summary

6 0 0 -0.002s +0.028s 100% @@ -159,7 +159,7 @@

summary

7 0 0 -0.038s +0.095s 100% @@ -170,7 +170,7 @@

summary

3 0 0 -0.018s +0.068s 100% @@ -181,7 +181,7 @@

summary

19 0 0 -0.024s +0.036s 100% @@ -192,7 +192,7 @@

summary

1 0 0 -0.012s +0.025s 100% @@ -214,7 +214,7 @@

summary

4 0 0 -0.015s +0.030s 100% @@ -225,7 +225,7 @@

summary

6 0 0 -0.011s +0.035s 100% @@ -236,7 +236,7 @@

summary

2 0 0 -0.005s +0.022s 100% @@ -247,7 +247,7 @@

summary

5 0 0 -0.022s +0.015s 100% @@ -258,7 +258,7 @@

summary

2 0 0 -0.005s +0.004s 100% @@ -269,7 +269,7 @@

summary

23 0 0 -0.016s +0.024s 100% @@ -280,7 +280,7 @@

summary

4 0 0 -0.006s +0.001s 100% @@ -291,7 +291,7 @@

summary

5 0 0 -0.080s +0.155s 100% @@ -302,7 +302,7 @@

summary

2 0 0 -0.008s +0.015s 100% @@ -313,7 +313,7 @@

summary

12 0 0 -0.010s +0.063s 100% @@ -324,7 +324,7 @@

summary

6 0 0 -0.001s +0.008s 100% @@ -335,7 +335,7 @@

summary

2 0 0 -0.007s +0.011s 100% @@ -346,7 +346,7 @@

summary

13 0 0 -0.010s +0.034s 100% @@ -357,7 +357,7 @@

summary

9 0 0 -0.003s +0.023s 100% @@ -368,7 +368,7 @@

summary

2 0 0 -0.002s +0.005s 100% @@ -384,7 +384,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/jgOC8NvD-Ho/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/jgOC8NvD-Ho/index.html index 7f42f8e7..5440de9c 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/jgOC8NvD-Ho/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/jgOC8NvD-Ho/index.html @@ -59,7 +59,7 @@

summary

-
0.002s
+
0.005s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0s +0.003s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0s 100% @@ -119,7 +119,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/nS85Fi07J3c/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/nS85Fi07J3c/index.html index 11636599..2d2fc0e9 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/nS85Fi07J3c/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/nS85Fi07J3c/index.html @@ -155,7 +155,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/puFWX_Obt0w/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/puFWX_Obt0w/index.html index c581e86c..b1d4ee4b 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/puFWX_Obt0w/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/puFWX_Obt0w/index.html @@ -59,7 +59,7 @@

summary

-
0.008s
+
0.015s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.007s +0.013s 100% @@ -119,7 +119,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/q6ABZ7jsFn4/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/q6ABZ7jsFn4/index.html index 5c654693..df1e69a6 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/q6ABZ7jsFn4/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/q6ABZ7jsFn4/index.html @@ -59,7 +59,7 @@

summary

-
0.010s
+
0.063s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0s +0.004s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0s +0.004s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -139,7 +139,7 @@

summary

1 0 0 -0.001s +0.006s 100% @@ -157,7 +157,7 @@

summary

1 0 0 -0s +0.002s 100% @@ -166,7 +166,7 @@

summary

1 0 0 -0s +0.004s 100% @@ -184,7 +184,7 @@

summary

1 0 0 -0.004s +0.011s 100% @@ -193,7 +193,7 @@

summary

1 0 0 -0s +0.005s 100% @@ -209,7 +209,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/qQlJg4S5_Pg/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/qQlJg4S5_Pg/index.html index d819d8ee..04916f4b 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/qQlJg4S5_Pg/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/qQlJg4S5_Pg/index.html @@ -59,7 +59,7 @@

summary

-
0.005s
+
0.022s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.001s +0.005s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -119,7 +119,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/rUM65hm-MTQ/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/rUM65hm-MTQ/index.html index 0b0e8dca..13720e08 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/rUM65hm-MTQ/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/rUM65hm-MTQ/index.html @@ -59,7 +59,7 @@

summary

-
0.044s
+
0.189s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.032s +0.081s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0.007s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.010s +0.098s 100% @@ -128,7 +128,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/uCLzYT_7gPE/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/uCLzYT_7gPE/index.html index 7a0b64f3..3099859e 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/uCLzYT_7gPE/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/uCLzYT_7gPE/index.html @@ -59,7 +59,7 @@

summary

-
0.354s
+
0.505s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.353s +0.505s 100% @@ -110,7 +110,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/zeseimhgUXc/AnYP8B_3XlU.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/zeseimhgUXc/AnYP8B_3XlU.html new file mode 100644 index 00000000..8b34558b --- /dev/null +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/zeseimhgUXc/AnYP8B_3XlU.html @@ -0,0 +1,159 @@ + + + + + +Test results - closingActiveTabRemovesItAndActivatesRemaining + + + + + +
+ +
+ +
+

Gradle Test Run :feature:editor:presentation:testDebugUnitTest

+

closingActiveTabRemovesItAndActivatesRemaining

+
+ +
+

summary

+
+
+ + + + + +
+
+ + + + + + + +
+
+
1
+

tests

+
+
+
+
0
+

failures

+
+
+
+
0
+

skipped

+
+
+
+
0.129s
+

duration

+
+
+
+
+
+
100%
+

successful

+
+
+
+
+
+
+

error output

+ +
Exception in thread "DefaultDispatcher-worker-3 @coroutine#23" kotlinx.coroutines.CompletionHandlerException: Exception in completion handler ChildCompletion@6ffbbbdf[job@1712b8c3] for "coroutine#23":StandaloneCoroutine{Cancelled}@1712b8c3
+	at kotlinx.coroutines.JobSupport.notifyCompletion(JobSupport.kt:1628)
+	at kotlinx.coroutines.JobSupport.completeStateFinalization(JobSupport.kt:316)
+	at kotlinx.coroutines.JobSupport.finalizeFinishingState(JobSupport.kt:233)
+	at kotlinx.coroutines.JobSupport.tryMakeCompletingSlowPath(JobSupport.kt:946)
+	at kotlinx.coroutines.JobSupport.tryMakeCompleting(JobSupport.kt:894)
+	at kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(JobSupport.kt:859)
+	at kotlinx.coroutines.AbstractCoroutine.resumeWith(AbstractCoroutine.kt:99)
+	at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:47)
+	at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:98)
+	at kotlinx.coroutines.EventLoop.processUnconfinedEvent(EventLoop.common.kt:65)
+	at kotlinx.coroutines.internal.DispatchedContinuationKt.resumeCancellableWithInternal(DispatchedContinuation.kt:392)
+	at kotlinx.coroutines.DispatchedCoroutine.afterResume(Builders.common.kt:588)
+	at kotlinx.coroutines.AbstractCoroutine.resumeWith(AbstractCoroutine.kt:101)
+	at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:47)
+	at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:100)
+	at kotlinx.coroutines.internal.LimitedDispatcher$Worker.run(LimitedDispatcher.kt:124)
+	at kotlinx.coroutines.scheduling.TaskImpl.run(Tasks.kt:89)
+	at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:586)
+	at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:798)
+	at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:717)
+	at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:704)
+	Suppressed: kotlinx.coroutines.internal.DiagnosticCoroutineContextException: [CoroutineId(23), "coroutine#23":StandaloneCoroutine{Cancelled}@1712b8c3, Dispatchers.Main]
+Caused by: kotlinx.coroutines.DispatchException: Coroutine dispatcher Dispatchers.Main threw an exception, context = [CoroutineId(3), "coroutine#3":ProducerCoroutine{Cancelling}@54deb599, Dispatchers.Main]
+	at kotlinx.coroutines.internal.DispatchedContinuationKt.safeIsDispatchNeeded(DispatchedContinuation.kt:264)
+	at kotlinx.coroutines.internal.DispatchedContinuationKt.resumeCancellableWithInternal(DispatchedContinuation.kt:324)
+	at kotlinx.coroutines.internal.ScopeCoroutine.afterCompletion(Scopes.kt:23)
+	at kotlinx.coroutines.JobSupport.continueCompleting(JobSupport.kt:987)
+	at kotlinx.coroutines.JobSupport.access$continueCompleting(JobSupport.kt:22)
+	at kotlinx.coroutines.JobSupport$ChildCompletion.invoke(JobSupport.kt:1268)
+	at kotlinx.coroutines.JobSupport.notifyCompletion(JobSupport.kt:1624)
+	... 20 more
+Caused by: java.lang.IllegalStateException: Dispatchers.Main was accessed when the platform dispatcher was absent and the test dispatcher was unset. Please make sure that Dispatchers.setMain() is called before accessing Dispatchers.Main and that Dispatchers.Main is not accessed after Dispatchers.resetMain().
+	at kotlinx.coroutines.test.internal.TestMainDispatcherJvmKt.reportMissingMainCoroutineDispatcher(TestMainDispatcherJvm.kt:45)
+	at kotlinx.coroutines.test.internal.TestMainDispatcherJvmKt.access$reportMissingMainCoroutineDispatcher(TestMainDispatcherJvm.kt:1)
+	at kotlinx.coroutines.test.internal.TestMainDispatcherFactory.createDispatcher$lambda$2(TestMainDispatcherJvm.kt:20)
+	at kotlin.SynchronizedLazyImpl.getValue(LazyJVM.kt:86)
+	at kotlinx.coroutines.test.internal.TestMainDispatcher.getMainDispatcher(TestMainDispatcher.kt:18)
+	at kotlinx.coroutines.test.internal.TestMainDispatcher.getDispatcher(TestMainDispatcher.kt:22)
+	at kotlinx.coroutines.test.internal.TestMainDispatcher.isDispatchNeeded(TestMainDispatcher.kt:32)
+	at kotlinx.coroutines.internal.DispatchedContinuationKt.safeIsDispatchNeeded(DispatchedContinuation.kt:262)
+	... 26 more
+Caused by: java.lang.IllegalStateException: Module with the Main dispatcher had failed to initialize. For tests Dispatchers.setMain from kotlinx-coroutines-test module can be used
+	at kotlinx.coroutines.internal.MissingMainCoroutineDispatcher.missing(MainDispatchers.kt:111)
+	at kotlinx.coroutines.internal.MissingMainCoroutineDispatcher.dispatch(MainDispatchers.kt:101)
+	at kotlinx.coroutines.internal.MissingMainCoroutineDispatcher.dispatch(MainDispatchers.kt:84)
+	at kotlinx.coroutines.test.internal.TestMainDispatcherFactory.createDispatcher$lambda$2(TestMainDispatcherJvm.kt:22)
+	... 31 more
+Caused by: java.lang.IllegalStateException: The main looper is not available
+	at kotlinx.coroutines.android.AndroidDispatcherFactory.createDispatcher(HandlerDispatcher.kt:51)
+	at kotlinx.coroutines.internal.MainDispatchersKt.tryCreateDispatcher(MainDispatchers.kt:53)
+	at kotlinx.coroutines.test.internal.TestMainDispatcherFactory.createDispatcher$lambda$2(TestMainDispatcherJvm.kt:15)
+	... 31 more
+
+ +
+
+
+
+
+ +
+ + diff --git a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/zeseimhgUXc/index.html b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/zeseimhgUXc/index.html index 94c41e76..8e6dc95b 100644 --- a/feature/editor/presentation/build/reports/tests/testDebugUnitTest/zeseimhgUXc/index.html +++ b/feature/editor/presentation/build/reports/tests/testDebugUnitTest/zeseimhgUXc/index.html @@ -59,7 +59,7 @@

summary

-
0.062s
+
0.346s

duration

@@ -89,12 +89,14 @@

summary

-closingActiveTabRemovesItAndActivatesRemaining + +closingActiveTabRemovesItAndActivatesRemaining + closingActiveTabRemovesItAndActivatesRemaining 1 0 0 -0.028s +0.129s 100% @@ -103,7 +105,7 @@

summary

1 0 0 -0.009s +0.082s 100% @@ -112,7 +114,7 @@

summary

1 0 0 -0.013s +0.097s 100% @@ -121,7 +123,7 @@

summary

1 0 0 -0.011s +0.035s 100% @@ -137,7 +139,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:32:56 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:52 AM

diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadk-HB0USVTED1ENA.androidstudiolite.feature.editor.engine.EditorCompletionAcceptanceCharacterizationTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadk-HB0USVTED1ENA.androidstudiolite.feature.editor.engine.EditorCompletionAcceptanceCharacterizationTest.xml index d91ec390..6220c7b0 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadk-HB0USVTED1ENA.androidstudiolite.feature.editor.engine.EditorCompletionAcceptanceCharacterizationTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadk-HB0USVTED1ENA.androidstudiolite.feature.editor.engine.EditorCompletionAcceptanceCharacterizationTest.xml @@ -1,7 +1,7 @@ - + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorDisplayTextTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorDisplayTextTest.xml index f6e9f6cd..c3993f20 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorDisplayTextTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorDisplayTextTest.xml @@ -1,19 +1,19 @@ - + - + - + - - - - + + + + - - - - + + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorFileTreePresentationTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorFileTreePresentationTest.xml index dd4cbdd1..8db2e45f 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorFileTreePresentationTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorFileTreePresentationTest.xml @@ -1,9 +1,9 @@ - + - - - + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorGitUiModelTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorGitUiModelTest.xml index b2102e06..b915ed26 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorGitUiModelTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorGitUiModelTest.xml @@ -1,10 +1,10 @@ - + - - + + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorRootInvalidationTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorRootInvalidationTest.xml index 4fafea54..8a267f79 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorRootInvalidationTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorRootInvalidationTest.xml @@ -1,7 +1,7 @@ - + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorTabLifecycleTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorTabLifecycleTest.xml index f49156bf..8379c061 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorTabLifecycleTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.EditorTabLifecycleTest.xml @@ -1,10 +1,63 @@ - + - - - - + + + + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.MarkBuildTabTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.MarkBuildTabTest.xml index 0f77c993..8714cca3 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.MarkBuildTabTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.MarkBuildTabTest.xml @@ -1,8 +1,8 @@ - + - - + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.BracketMatchingTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.BracketMatchingTest.xml index dbdcbfce..cd9020b0 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.BracketMatchingTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.BracketMatchingTest.xml @@ -1,12 +1,12 @@ - + - - - - + + + + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CallArgumentCompletionTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CallArgumentCompletionTest.xml index 3e64e437..1fef6d1c 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CallArgumentCompletionTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CallArgumentCompletionTest.xml @@ -1,12 +1,12 @@ - + - - - - - - + + + + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CompletionRankingCharacterizationTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CompletionRankingCharacterizationTest.xml index aa8aa5c4..24ad4f8f 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CompletionRankingCharacterizationTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CompletionRankingCharacterizationTest.xml @@ -1,9 +1,9 @@ - + - - - + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CompletionTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CompletionTest.xml index bd17e24c..52519d83 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CompletionTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.CompletionTest.xml @@ -1,25 +1,25 @@ - + - + - - - + + + - - - + + + - - - - + + + + - - + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorDocumentTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorDocumentTest.xml index 42a7827c..48c26411 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorDocumentTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorDocumentTest.xml @@ -1,5 +1,5 @@ - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorLanguageTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorLanguageTest.xml index 9d5f7aef..8bfc744c 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorLanguageTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorLanguageTest.xml @@ -1,10 +1,10 @@ - + - - - - + + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorSessionTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorSessionTest.xml index d8e7f4cb..972668c9 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorSessionTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.EditorSessionTest.xml @@ -1,11 +1,11 @@ - + - + - - - + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.FunctionBodyCompletionTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.FunctionBodyCompletionTest.xml index c369283b..a95005f2 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.FunctionBodyCompletionTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.FunctionBodyCompletionTest.xml @@ -1,8 +1,8 @@ - + - - + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.ImeComposeEditTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.ImeComposeEditTest.xml index 4a52aef2..e4eb05f6 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.ImeComposeEditTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.ImeComposeEditTest.xml @@ -1,11 +1,11 @@ - + - - - + + + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinBraceDepthCharacterizationTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinBraceDepthCharacterizationTest.xml index 6ec7c8bd..39559d67 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinBraceDepthCharacterizationTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinBraceDepthCharacterizationTest.xml @@ -1,8 +1,8 @@ - + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinCompletionScannerTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinCompletionScannerTest.xml index 8d685e4b..afa49ecc 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinCompletionScannerTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinCompletionScannerTest.xml @@ -1,29 +1,29 @@ - + - - - + + + - + - + - + - + - - - + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinLexUtilTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinLexUtilTest.xml index 6e16941b..40ffaf02 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinLexUtilTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.KotlinLexUtilTest.xml @@ -1,10 +1,10 @@ - + - - + + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SignatureHelpTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SignatureHelpTest.xml index e5ce408c..68efdd44 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SignatureHelpTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SignatureHelpTest.xml @@ -1,7 +1,7 @@ - + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SmartEditTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SmartEditTest.xml index 7d52aedd..715f6139 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SmartEditTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SmartEditTest.xml @@ -1,18 +1,18 @@ - + - + - + - - - - - - + + + + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SyntaxLexerTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SyntaxLexerTest.xml index d045dbbf..9621cc96 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SyntaxLexerTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.SyntaxLexerTest.xml @@ -1,11 +1,11 @@ - + - - + + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.TypeCompletionTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.TypeCompletionTest.xml index ef4a828b..f010e94f 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.TypeCompletionTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.TypeCompletionTest.xml @@ -1,8 +1,8 @@ - + - + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.project.ProjectSymbolIndexTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.project.ProjectSymbolIndexTest.xml index 9b7d9a7e..a6f6b80c 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.project.ProjectSymbolIndexTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.project.ProjectSymbolIndexTest.xml @@ -1,11 +1,11 @@ - + - - - - - + + + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.xml.XmlCompletionAnalyzerTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.xml.XmlCompletionAnalyzerTest.xml index 4477ba5e..670f7373 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.xml.XmlCompletionAnalyzerTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.engine.xml.XmlCompletionAnalyzerTest.xml @@ -1,19 +1,19 @@ - + - + - - - - - + + + + + - - - - - + + + + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.filetree.EditorFileTreeNavigationTest.xml b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.filetree.EditorFileTreeNavigationTest.xml index 23082131..1c625c99 100644 --- a/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.filetree.EditorFileTreeNavigationTest.xml +++ b/feature/editor/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.editor.filetree.EditorFileTreeNavigationTest.xml @@ -1,13 +1,13 @@ - + - + - - + + diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/binary/output-events.bin b/feature/editor/presentation/build/test-results/testDebugUnitTest/binary/output-events.bin index e69de29b..ae4f7bc0 100644 Binary files a/feature/editor/presentation/build/test-results/testDebugUnitTest/binary/output-events.bin and b/feature/editor/presentation/build/test-results/testDebugUnitTest/binary/output-events.bin differ diff --git a/feature/editor/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin b/feature/editor/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin index 9bb43d95..c8f2e447 100644 Binary files a/feature/editor/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin and b/feature/editor/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin differ diff --git a/feature/editor/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModule.kt b/feature/editor/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModule.kt index e2a8c366..21bb2e26 100644 --- a/feature/editor/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModule.kt +++ b/feature/editor/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/editor/di/EditorModule.kt @@ -4,10 +4,14 @@ import com.ahmadkharfan.androidstudiolite.feature.editor.EditorFeatureApiImpl import com.ahmadkharfan.androidstudiolite.feature.editor.EditorViewModel import com.ahmadkharfan.androidstudiolite.feature.editor.api.EditorFeatureApi import com.ahmadkharfan.androidstudiolite.feature.editor.aichat.AiChatViewModel +import com.ahmadkharfan.androidstudiolite.feature.editor.assets.AssetsViewModel import org.koin.core.module.dsl.viewModel import org.koin.dsl.module val editorModule = module { + viewModel { params -> + AssetsViewModel(projectId = params.get(), projectPathResolver = get()) + } single { EditorFeatureApiImpl() } viewModel { params -> AiChatViewModel(get(), get(), get(), projectId = params.get()) } viewModel { params -> diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt.dex b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt.dex new file mode 100644 index 00000000..503e76f3 Binary files /dev/null and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt.dex differ diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$2e6561411b8222c343ef18256c97e26eb57fac31bd7d437513b5382d9b4d0fb9$0.globals b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$2e6561411b8222c343ef18256c97e26eb57fac31bd7d437513b5382d9b4d0fb9$0.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$2e6561411b8222c343ef18256c97e26eb57fac31bd7d437513b5382d9b4d0fb9$0.globals differ diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$0.globals b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$0.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$0.globals differ diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$1.globals b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$1.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$1.globals differ diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$2.globals b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$2.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$2.globals differ diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$3.globals b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$3.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$3.globals differ diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$4.globals b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$4.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$4.globals differ diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$5.globals b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$5.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$5.globals differ diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$6.globals b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$6.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt$$InternalSyntheticLambda$2$cb7a030a3823cb16bc490bb391168b79f5af0e3cef87f77615c1e252cc75a03c$6.globals differ diff --git a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin index b288e0a8..04698e95 100644 Binary files a/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin and b/feature/git/presentation/build/.transforms/d9d0b593b10118b1369c8cf8b63b154b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ diff --git a/feature/git/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/META-INF/presentation.kotlin_module b/feature/git/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/META-INF/presentation.kotlin_module index 92e84d2b..af44a7d1 100644 Binary files a/feature/git/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/META-INF/presentation.kotlin_module and b/feature/git/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/META-INF/presentation.kotlin_module differ diff --git a/feature/git/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt.class b/feature/git/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt.class new file mode 100644 index 00000000..feff3afc Binary files /dev/null and b/feature/git/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt.class differ diff --git a/feature/git/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/feature/git/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar index 7592addc..de99d946 100644 Binary files a/feature/git/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar and b/feature/git/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ diff --git a/feature/git/presentation/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/presentation.kotlin_module b/feature/git/presentation/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/presentation.kotlin_module index 92e84d2b..af44a7d1 100644 Binary files a/feature/git/presentation/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/presentation.kotlin_module and b/feature/git/presentation/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/presentation.kotlin_module differ diff --git a/feature/git/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/presentation.kotlin_module b/feature/git/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/presentation.kotlin_module index 92e84d2b..af44a7d1 100644 Binary files a/feature/git/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/presentation.kotlin_module and b/feature/git/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/presentation.kotlin_module differ diff --git a/feature/git/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt.class b/feature/git/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt.class new file mode 100644 index 00000000..feff3afc Binary files /dev/null and b/feature/git/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModuleKt.class differ diff --git a/feature/git/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/feature/git/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar index 3406a68f..91b9cc8c 100644 Binary files a/feature/git/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar and b/feature/git/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab index eff63f73..add1194b 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream index 06c28458..947a588b 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len index 63d734f8..e1db3f16 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len index 3085af4d..c944a8af 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at index 10974ff4..84d25adb 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i index 238c2413..a6001d32 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab index c305bcea..79b71d64 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream index 821c5617..07a546d8 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len index 19cb388e..d8600d03 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len index e63d2b31..a0c12631 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at index 95addd05..e3ecd88c 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i index 011ad0b2..f5944a12 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab index 68891982..c76d53b3 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream index 1bd58d0d..86cd8c5e 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len index f6976ec4..421b4028 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len index fd5292d4..a5413564 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at index ebcda5a0..7c6417d3 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i index a0d5e2fb..1089465f 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab index 784a794c..e4c41f79 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream index 2699e8d8..918ea7e2 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len index fed6a517..87953ff2 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len index 49d559b6..5ffc1b29 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at index 0284bae7..8da6aadc 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i index 0b01c9a8..c0df967e 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab index 62f15455..f39e9694 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream index 06c28458..947a588b 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len index 63d734f8..e1db3f16 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len index 3085af4d..c944a8af 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at index a66032b9..a0624026 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i index 238c2413..a6001d32 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab index 5007100b..8a865277 100644 --- a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +++ b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab @@ -1,2 +1,2 @@ -31 +32 0 \ No newline at end of file diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab index 215cab10..8256a9b6 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream index 06c28458..947a588b 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len index 63d734f8..e1db3f16 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len index 3085af4d..c944a8af 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at index ca46eca9..db9e3875 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i index 238c2413..a6001d32 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab index fc3028d9..23e64575 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream index 31a0c7ec..6111626b 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len index b01f22d3..d263632f 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len index 3085af4d..c944a8af 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at index 9f4b1060..24b37f9c 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i index aa13d7ea..004f936b 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab index d6528019..56bf005f 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream index 591d0717..18fc8a22 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len index fa13a7ea..307523c7 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len index 2a0630cb..95c47044 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at index ad9f2b28..f5581820 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i index 51f17867..c9f507d8 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin index c92d59ec..329deb40 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin and b/feature/git/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ diff --git a/feature/git/presentation/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/feature/git/presentation/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin index dbadb628..25549be4 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin and b/feature/git/presentation/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ diff --git a/feature/git/presentation/build/kotlin/compileDebugUnitTestKotlin/cacheable/last-build.bin b/feature/git/presentation/build/kotlin/compileDebugUnitTestKotlin/cacheable/last-build.bin index a57d2dbf..cbc28a60 100644 Binary files a/feature/git/presentation/build/kotlin/compileDebugUnitTestKotlin/cacheable/last-build.bin and b/feature/git/presentation/build/kotlin/compileDebugUnitTestKotlin/cacheable/last-build.bin differ diff --git a/feature/git/presentation/build/reports/detekt/detekt.html b/feature/git/presentation/build/reports/detekt/detekt.html index daf1b73c..b5c98596 100644 --- a/feature/git/presentation/build/reports/detekt/detekt.html +++ b/feature/git/presentation/build/reports/detekt/detekt.html @@ -157,11 +157,11 @@

Metrics

    -
  • 324 number of properties
  • +
  • 325 number of properties
  • 625 number of functions
  • 61 number of classes
  • -
  • 5 number of packages
  • -
  • 39 number of kt files
  • +
  • 6 number of packages
  • +
  • 40 number of kt files
@@ -170,15 +170,15 @@

Complexity Report

    -
  • 5,889 lines of code (loc)
  • -
  • 5,385 source lines of code (sloc)
  • -
  • 4,105 logical lines of code (lloc)
  • -
  • 0 comment lines of code (cloc)
  • +
  • 5,967 lines of code (loc)
  • +
  • 5,452 source lines of code (sloc)
  • +
  • 4,148 logical lines of code (lloc)
  • +
  • 7 comment lines of code (cloc)
  • 1,048 cyclomatic complexity (mcc)
  • 456 cognitive complexity
  • 0 number of total code smells
  • 0% comment source ratio
  • -
  • 255 mcc per 1,000 lloc
  • +
  • 252 mcc per 1,000 lloc
  • 0 code smells per 1,000 lloc
@@ -188,7 +188,7 @@

Findings

Total: 0
-generated with detekt version 1.23.8 on 2026-07-30 08:27:58 UTC. +generated with detekt version 1.23.8 on 2026-07-30 08:49:52 UTC. diff --git a/feature/git/presentation/build/reports/tests/testDebugUnitTest/2mdWnSpfqxQ/index.html b/feature/git/presentation/build/reports/tests/testDebugUnitTest/2mdWnSpfqxQ/index.html index 7929c9f9..93158594 100644 --- a/feature/git/presentation/build/reports/tests/testDebugUnitTest/2mdWnSpfqxQ/index.html +++ b/feature/git/presentation/build/reports/tests/testDebugUnitTest/2mdWnSpfqxQ/index.html @@ -59,7 +59,7 @@

summary

-
0.020s
+
0.031s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.003s +0.005s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0s +0.002s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.013s +0.021s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -146,7 +146,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:30:54 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:55 AM

diff --git a/feature/git/presentation/build/reports/tests/testDebugUnitTest/A_ZK7ouvzgA/index.html b/feature/git/presentation/build/reports/tests/testDebugUnitTest/A_ZK7ouvzgA/index.html index b0cc4504..ba85268d 100644 --- a/feature/git/presentation/build/reports/tests/testDebugUnitTest/A_ZK7ouvzgA/index.html +++ b/feature/git/presentation/build/reports/tests/testDebugUnitTest/A_ZK7ouvzgA/index.html @@ -59,7 +59,7 @@

summary

-
0.101s
+
0.237s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.008s +0.011s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.009s +0.047s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.037s +0.068s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.025s +0.074s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.011s +0.024s 100% @@ -139,7 +139,7 @@

summary

1 0 0 -0.007s +0.010s 100% @@ -155,7 +155,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:30:54 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:55 AM

diff --git a/feature/git/presentation/build/reports/tests/testDebugUnitTest/Jd4JQgvzLJo/index.html b/feature/git/presentation/build/reports/tests/testDebugUnitTest/Jd4JQgvzLJo/index.html index 01114851..9afc9320 100644 --- a/feature/git/presentation/build/reports/tests/testDebugUnitTest/Jd4JQgvzLJo/index.html +++ b/feature/git/presentation/build/reports/tests/testDebugUnitTest/Jd4JQgvzLJo/index.html @@ -59,7 +59,7 @@

summary

-
0.003s
+
0.004s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.002s +0.003s 100% @@ -110,7 +110,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:30:54 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:55 AM

diff --git a/feature/git/presentation/build/reports/tests/testDebugUnitTest/TnT9zkwn5Ng/index.html b/feature/git/presentation/build/reports/tests/testDebugUnitTest/TnT9zkwn5Ng/index.html index e7dff566..49156750 100644 --- a/feature/git/presentation/build/reports/tests/testDebugUnitTest/TnT9zkwn5Ng/index.html +++ b/feature/git/presentation/build/reports/tests/testDebugUnitTest/TnT9zkwn5Ng/index.html @@ -59,7 +59,7 @@

summary

-
0.005s
+
0.022s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.003s +0.008s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0s +0.002s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -146,7 +146,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:30:54 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:55 AM

diff --git a/feature/git/presentation/build/reports/tests/testDebugUnitTest/WEMtx2VNtCM/index.html b/feature/git/presentation/build/reports/tests/testDebugUnitTest/WEMtx2VNtCM/index.html index 9030e057..138e56e9 100644 --- a/feature/git/presentation/build/reports/tests/testDebugUnitTest/WEMtx2VNtCM/index.html +++ b/feature/git/presentation/build/reports/tests/testDebugUnitTest/WEMtx2VNtCM/index.html @@ -59,7 +59,7 @@

summary

-
0.491s
+
1.341s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.031s +0.065s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.022s +0.063s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.301s +0.779s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.032s +0.057s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.020s +0.073s 100% @@ -139,7 +139,7 @@

summary

1 0 0 -0.017s +0.047s 100% @@ -148,7 +148,7 @@

summary

1 0 0 -0.009s +0.040s 100% @@ -157,7 +157,7 @@

summary

1 0 0 -0.014s +0.075s 100% @@ -166,7 +166,7 @@

summary

1 0 0 -0.018s +0.043s 100% @@ -175,7 +175,7 @@

summary

1 0 0 -0.021s +0.087s 100% @@ -191,7 +191,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:30:54 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:55 AM

diff --git a/feature/git/presentation/build/reports/tests/testDebugUnitTest/dIJjotiD2z4/index.html b/feature/git/presentation/build/reports/tests/testDebugUnitTest/dIJjotiD2z4/index.html index 3a6bf42a..658b7a3e 100644 --- a/feature/git/presentation/build/reports/tests/testDebugUnitTest/dIJjotiD2z4/index.html +++ b/feature/git/presentation/build/reports/tests/testDebugUnitTest/dIJjotiD2z4/index.html @@ -59,7 +59,7 @@

summary

-
0.005s
+
0.031s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0.004s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0s +0.015s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.003s +0.002s 100% @@ -137,7 +137,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:30:54 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:55 AM

diff --git a/feature/git/presentation/build/reports/tests/testDebugUnitTest/gDlJgDWmkYM/index.html b/feature/git/presentation/build/reports/tests/testDebugUnitTest/gDlJgDWmkYM/index.html index 27f4c2b6..42a120ce 100644 --- a/feature/git/presentation/build/reports/tests/testDebugUnitTest/gDlJgDWmkYM/index.html +++ b/feature/git/presentation/build/reports/tests/testDebugUnitTest/gDlJgDWmkYM/index.html @@ -59,7 +59,7 @@

summary

-
0.096s
+
0.235s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.001s +0.007s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.001s +0.004s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0.041s +0.057s 100% @@ -121,7 +121,7 @@

summary

1 0 0 -0.001s +0.003s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0.019s +0.054s 100% @@ -139,7 +139,7 @@

summary

1 0 0 -0.001s +0.002s 100% @@ -148,7 +148,7 @@

summary

1 0 0 -0s +0.020s 100% @@ -157,7 +157,7 @@

summary

1 0 0 -0.009s +0.051s 100% @@ -166,7 +166,7 @@

summary

1 0 0 -0.005s +0.004s 100% @@ -182,7 +182,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:30:54 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:55 AM

diff --git a/feature/git/presentation/build/reports/tests/testDebugUnitTest/index.html b/feature/git/presentation/build/reports/tests/testDebugUnitTest/index.html index a566ae46..e839e40e 100644 --- a/feature/git/presentation/build/reports/tests/testDebugUnitTest/index.html +++ b/feature/git/presentation/build/reports/tests/testDebugUnitTest/index.html @@ -56,7 +56,7 @@

summary

-
2.700s
+
11.752s

duration

@@ -93,7 +93,7 @@

summary

6 0 0 -0.010s +0.021s 100% @@ -104,7 +104,7 @@

summary

9 0 0 -0.096s +0.235s 100% @@ -115,7 +115,7 @@

summary

5 0 0 -0.005s +0.022s 100% @@ -126,7 +126,7 @@

summary

10 0 0 -0.491s +1.341s 100% @@ -137,7 +137,7 @@

summary

4 0 0 -0.005s +0.031s 100% @@ -148,7 +148,7 @@

summary

6 0 0 -0.101s +0.237s 100% @@ -159,7 +159,7 @@

summary

5 0 0 -0.020s +0.031s 100% @@ -170,7 +170,7 @@

summary

1 0 0 -0.003s +0.004s 100% @@ -186,7 +186,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:30:54 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:55 AM

diff --git a/feature/git/presentation/build/reports/tests/testDebugUnitTest/jDW-0G8Hf5g/index.html b/feature/git/presentation/build/reports/tests/testDebugUnitTest/jDW-0G8Hf5g/index.html index a3cf1878..5c8060e4 100644 --- a/feature/git/presentation/build/reports/tests/testDebugUnitTest/jDW-0G8Hf5g/index.html +++ b/feature/git/presentation/build/reports/tests/testDebugUnitTest/jDW-0G8Hf5g/index.html @@ -59,7 +59,7 @@

summary

-
0.010s
+
0.021s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.002s +0.013s 100% @@ -112,7 +112,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -130,7 +130,7 @@

summary

1 0 0 -0s +0.001s 100% @@ -139,7 +139,7 @@

summary

1 0 0 -0.004s +0.001s 100% @@ -155,7 +155,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:30:54 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:55 AM

diff --git a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitDisplayTextTest.xml b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitDisplayTextTest.xml index a557a1bf..5ef6545e 100644 --- a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitDisplayTextTest.xml +++ b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitDisplayTextTest.xml @@ -1,15 +1,15 @@ - + - - - - - - - - - + + + + + + + + + diff --git a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitErrorMessageMapperTest.xml b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitErrorMessageMapperTest.xml index 9e29acc6..38cf0db0 100644 --- a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitErrorMessageMapperTest.xml +++ b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitErrorMessageMapperTest.xml @@ -1,11 +1,11 @@ - + - - - - - + + + + + diff --git a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelControllersTest.xml b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelControllersTest.xml index 53d3e7ac..317e58dd 100644 --- a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelControllersTest.xml +++ b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelControllersTest.xml @@ -1,16 +1,16 @@ - + - - - - - - - - - - + + + + + + + + + + diff --git a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelUiStateTest.xml b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelUiStateTest.xml index 84cff2d7..2bb0f9de 100644 --- a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelUiStateTest.xml +++ b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelUiStateTest.xml @@ -1,10 +1,10 @@ - + - - - - + + + + diff --git a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelViewModelTest.xml b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelViewModelTest.xml index 7eb5f6bc..2f778a1f 100644 --- a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelViewModelTest.xml +++ b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.GitPanelViewModelTest.xml @@ -1,12 +1,12 @@ - + - - - - - - + + + + + + diff --git a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.diff.DiffAlignmentTest.xml b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.diff.DiffAlignmentTest.xml index 1f43599c..11a107b4 100644 --- a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.diff.DiffAlignmentTest.xml +++ b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.diff.DiffAlignmentTest.xml @@ -1,12 +1,12 @@ - + - + - - - - + + + + diff --git a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.history.GitGraphLaneComputerTest.xml b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.history.GitGraphLaneComputerTest.xml index 8664574c..bd567bc1 100644 --- a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.history.GitGraphLaneComputerTest.xml +++ b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.history.GitGraphLaneComputerTest.xml @@ -1,11 +1,11 @@ - + - + - - - + + + diff --git a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.history.GitGraphLayoutCharacterizationTest.xml b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.history.GitGraphLayoutCharacterizationTest.xml index 0df8b0d8..ed67b01f 100644 --- a/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.history.GitGraphLayoutCharacterizationTest.xml +++ b/feature/git/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.git.history.GitGraphLayoutCharacterizationTest.xml @@ -1,7 +1,7 @@ - + - + diff --git a/feature/git/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin b/feature/git/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin index 2d916b03..925adba0 100644 Binary files a/feature/git/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin and b/feature/git/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin differ diff --git a/feature/git/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModule.kt b/feature/git/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModule.kt new file mode 100644 index 00000000..60cf55a3 --- /dev/null +++ b/feature/git/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/git/di/GitPresentationModule.kt @@ -0,0 +1,77 @@ +package com.ahmadkharfan.androidstudiolite.feature.git.di + +import com.ahmadkharfan.androidstudiolite.feature.git.GitPanelApiImpl +import com.ahmadkharfan.androidstudiolite.feature.git.GitPanelViewModel +import com.ahmadkharfan.androidstudiolite.feature.git.api.GitPanelApi +import com.ahmadkharfan.androidstudiolite.feature.git.conflict.GitConflictViewModel +import com.ahmadkharfan.androidstudiolite.feature.git.diff.GitDiffViewModel +import com.ahmadkharfan.androidstudiolite.feature.git.history.GitBlameViewModel +import com.ahmadkharfan.androidstudiolite.feature.git.history.GitHistoryViewModel +import com.ahmadkharfan.androidstudiolite.feature.git.refs.GitRefsViewModel +import org.koin.core.module.dsl.viewModel +import org.koin.dsl.module + +/** + * What :feature:git:presentation contributes, including the binding of its own contract. + * + * The repository, credential-store and authenticator bindings stay in :app: they wire :domain + * contracts to :data implementations, which is the composition root's job and something a feature + * module is not permitted to see. + */ +val gitPresentationModule = module { + single { GitPanelApiImpl() } + + viewModel { params -> + GitPanelViewModel( + projectId = params.get(), + projectPathResolver = get(), + gitRepository = get(), + operationMonitor = get(), + credentialStore = get(), + authenticator = get(), + ) + } + viewModel { params -> + GitDiffViewModel( + projectId = params[0], + path = params[1], + target = params[2], + commitId = params.get(3).takeIf { it.isNotBlank() }, + projectPathResolver = get(), + gitRepository = get(), + ) + } + viewModel { params -> + GitHistoryViewModel( + projectId = params[0], + requestedPath = params.get(1).takeIf { it.isNotBlank() }, + projectPathResolver = get(), + gitRepository = get(), + ) + } + viewModel { params -> + GitBlameViewModel( + projectId = params[0], + requestedPath = params[1], + projectPathResolver = get(), + gitRepository = get(), + ) + } + viewModel { params -> + GitRefsViewModel( + projectId = params[0], + mode = params[1], + projectPathResolver = get(), + gitRepository = get(), + credentialStore = get(), + authenticator = get(), + ) + } + viewModel { params -> + GitConflictViewModel( + projectId = params.get(), + projectPathResolver = get(), + gitRepository = get(), + ) + } +} diff --git a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$1.dex b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$1.dex similarity index 93% rename from feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$1.dex rename to feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$1.dex index 979bcf8d..fb777619 100644 Binary files a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$1.dex and b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$1.dex differ diff --git a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$2.dex b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$2.dex new file mode 100644 index 00000000..3ee43471 Binary files /dev/null and b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$2.dex differ diff --git a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$2.dex b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$3.dex similarity index 83% rename from feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$2.dex rename to feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$3.dex index fe668d7b..09cde74e 100644 Binary files a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$2.dex and b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$3.dex differ diff --git a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$3.dex b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$4.dex similarity index 84% rename from feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$3.dex rename to feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$4.dex index c1ea666d..e27ef21c 100644 Binary files a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$3.dex and b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$4.dex differ diff --git a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.dex b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.dex index aeddc566..a5f62d21 100644 Binary files a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.dex and b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.dex differ diff --git a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$$InternalSyntheticLambda$2$7d5d5f5573e15fc92295c332b557d9d582eaa11ea93131cfefb7ff6b99007173$0.globals b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$$InternalSyntheticLambda$2$7d5d5f5573e15fc92295c332b557d9d582eaa11ea93131cfefb7ff6b99007173$0.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$$InternalSyntheticLambda$2$7d5d5f5573e15fc92295c332b557d9d582eaa11ea93131cfefb7ff6b99007173$0.globals differ diff --git a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$$InternalSyntheticLambda$2$7d5d5f5573e15fc92295c332b557d9d582eaa11ea93131cfefb7ff6b99007173$1.globals b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$$InternalSyntheticLambda$2$7d5d5f5573e15fc92295c332b557d9d582eaa11ea93131cfefb7ff6b99007173$1.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$$InternalSyntheticLambda$2$7d5d5f5573e15fc92295c332b557d9d582eaa11ea93131cfefb7ff6b99007173$1.globals differ diff --git a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin index 6ebf619e..076b2fc9 100644 Binary files a/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin and b/feature/projects/presentation/build/.transforms/70449e2166aeecf2eb1e732bfce41d32/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ diff --git a/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$1.class b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$1.class similarity index 96% rename from feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$1.class rename to feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$1.class index 98cf12a1..44c18ed5 100644 Binary files a/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$1.class and b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$1.class differ diff --git a/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$2.class b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$2.class new file mode 100644 index 00000000..d61877d9 Binary files /dev/null and b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$2.class differ diff --git a/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$2.class b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$3.class similarity index 92% rename from feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$2.class rename to feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$3.class index d85c7d51..8d7523ff 100644 Binary files a/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$2.class and b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$3.class differ diff --git a/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$3.class b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$4.class similarity index 91% rename from feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$3.class rename to feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$4.class index 1f590a80..4504a410 100644 Binary files a/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$3.class and b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$4.class differ diff --git a/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.class b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.class index d389c225..1c239813 100644 Binary files a/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.class and b/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.class differ diff --git a/feature/projects/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/feature/projects/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar index 567c4034..930b0377 100644 Binary files a/feature/projects/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar and b/feature/projects/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ diff --git a/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$1.class b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$1.class similarity index 96% rename from feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$1.class rename to feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$1.class index 98cf12a1..44c18ed5 100644 Binary files a/feature/projects/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$1.class and b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$1.class differ diff --git a/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$2.class b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$2.class new file mode 100644 index 00000000..d61877d9 Binary files /dev/null and b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$2.class differ diff --git a/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$2.class b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$3.class similarity index 92% rename from feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$2.class rename to feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$3.class index d85c7d51..8d7523ff 100644 Binary files a/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$2.class and b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$3.class differ diff --git a/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$3.class b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$4.class similarity index 91% rename from feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$3.class rename to feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$4.class index 1f590a80..4504a410 100644 Binary files a/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$4$$inlined$viewModelOf$default$3.class and b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt$projectsModule$lambda$5$$inlined$viewModelOf$default$4.class differ diff --git a/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.class b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.class index d389c225..1c239813 100644 Binary files a/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.class and b/feature/projects/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModuleKt.class differ diff --git a/feature/projects/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/feature/projects/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar index e127fad1..2f74900e 100644 Binary files a/feature/projects/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar and b/feature/projects/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab index db7f8b86..3b32a845 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at index 5e45e8c8..aa6cf6d1 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab index 238d8667..f31adbae 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream index ede2df69..0bf10538 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len index 001e8051..0453d410 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len index 51b37254..199a5a0a 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at index b4a6634a..e1e276ea 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i index 4ace5a7c..024a5b62 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab index c853084b..4f544f55 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at index 864ab324..8f88b0a8 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab index 2786b14f..8428c1dc 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at index 74014d47..74b79217 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab index 295109aa..0d213d89 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at index f50672e4..6561c196 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab index 070b72f6..703ad20c 100644 --- a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +++ b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab @@ -1,2 +1,2 @@ -28 +29 0 \ No newline at end of file diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab index d33be15f..e1672377 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at index a94e801c..b70d3efe 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab index a7501eb5..57aec3d0 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream index 4ef1e754..fa194bad 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len index 19ced97b..a930d6b3 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len index 8d483a86..fa432244 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at index 4a6abe19..ac5c18f6 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i index c21d52aa..20619a70 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab index b3933cdd..0fcd7c5f 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream index 97fc2f71..0b859625 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len index 6872b3df..d18ad088 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len index 08547fd6..69cb9dcc 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at index e54ddb04..c88260dd 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i index ac514060..8476386d 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin index 8132e90d..083aaec3 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin and b/feature/projects/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ diff --git a/feature/projects/presentation/build/kotlin/compileDebugUnitTestKotlin/cacheable/last-build.bin b/feature/projects/presentation/build/kotlin/compileDebugUnitTestKotlin/cacheable/last-build.bin index 704df6e7..8c26a9fb 100644 Binary files a/feature/projects/presentation/build/kotlin/compileDebugUnitTestKotlin/cacheable/last-build.bin and b/feature/projects/presentation/build/kotlin/compileDebugUnitTestKotlin/cacheable/last-build.bin differ diff --git a/feature/projects/presentation/build/reports/detekt/detekt.html b/feature/projects/presentation/build/reports/detekt/detekt.html index a81708c6..88330fb7 100644 --- a/feature/projects/presentation/build/reports/detekt/detekt.html +++ b/feature/projects/presentation/build/reports/detekt/detekt.html @@ -170,9 +170,9 @@

Complexity Report

    -
  • 2,555 lines of code (loc)
  • -
  • 2,302 source lines of code (sloc)
  • -
  • 1,626 logical lines of code (lloc)
  • +
  • 2,557 lines of code (loc)
  • +
  • 2,304 source lines of code (sloc)
  • +
  • 1,627 logical lines of code (lloc)
  • 0 comment lines of code (cloc)
  • 291 cyclomatic complexity (mcc)
  • 131 cognitive complexity
  • @@ -188,7 +188,7 @@

    Findings

    Total: 0
    -generated with detekt version 1.23.8 on 2026-07-30 08:33:29 UTC. +generated with detekt version 1.23.8 on 2026-07-30 08:49:49 UTC. diff --git a/feature/projects/presentation/build/reports/tests/testDebugUnitTest/IY7cc_hZNls/index.html b/feature/projects/presentation/build/reports/tests/testDebugUnitTest/IY7cc_hZNls/index.html index bbbffd79..637968f1 100644 --- a/feature/projects/presentation/build/reports/tests/testDebugUnitTest/IY7cc_hZNls/index.html +++ b/feature/projects/presentation/build/reports/tests/testDebugUnitTest/IY7cc_hZNls/index.html @@ -59,7 +59,7 @@

    summary

    -
    0.110s
    +
    0.656s

    duration

    @@ -94,7 +94,7 @@

    summary

    1 0 0 -0.001s +0.007s 100% @@ -103,7 +103,7 @@

    summary

    1 0 0 -0.088s +0.404s 100% @@ -112,7 +112,7 @@

    summary

    1 0 0 -0.001s +0.017s 100% @@ -121,7 +121,7 @@

    summary

    1 0 0 -0.002s +0.015s 100% @@ -130,7 +130,7 @@

    summary

    1 0 0 -0.004s +0.050s 100% @@ -139,7 +139,7 @@

    summary

    1 0 0 -0.001s +0.003s 100% @@ -148,7 +148,7 @@

    summary

    1 0 0 -0.001s +0.014s 100% @@ -157,7 +157,7 @@

    summary

    1 0 0 -0.002s +0.014s 100% @@ -166,7 +166,7 @@

    summary

    1 0 0 -0s +0.031s 100% @@ -175,7 +175,7 @@

    summary

    1 0 0 -0.001s +0.010s 100% @@ -184,7 +184,7 @@

    summary

    1 0 0 -0.002s +0.010s 100% @@ -193,7 +193,7 @@

    summary

    1 0 0 -0.001s +0.014s 100% @@ -202,7 +202,7 @@

    summary

    1 0 0 -0.004s +0.032s 100% @@ -218,7 +218,7 @@

    summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:33:40 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:54 AM

diff --git a/feature/projects/presentation/build/reports/tests/testDebugUnitTest/XX8X1fwrCk4/index.html b/feature/projects/presentation/build/reports/tests/testDebugUnitTest/XX8X1fwrCk4/index.html index 1e06fd29..d7ef5009 100644 --- a/feature/projects/presentation/build/reports/tests/testDebugUnitTest/XX8X1fwrCk4/index.html +++ b/feature/projects/presentation/build/reports/tests/testDebugUnitTest/XX8X1fwrCk4/index.html @@ -59,7 +59,7 @@

summary

-
0.065s
+
0.180s

duration

@@ -94,7 +94,7 @@

summary

1 0 0 -0.052s +0.140s 100% @@ -103,7 +103,7 @@

summary

1 0 0 -0.002s +0.006s 100% @@ -119,7 +119,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:33:40 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:54 AM

diff --git a/feature/projects/presentation/build/reports/tests/testDebugUnitTest/index.html b/feature/projects/presentation/build/reports/tests/testDebugUnitTest/index.html index f9310c11..1d248d8d 100644 --- a/feature/projects/presentation/build/reports/tests/testDebugUnitTest/index.html +++ b/feature/projects/presentation/build/reports/tests/testDebugUnitTest/index.html @@ -56,7 +56,7 @@

summary

-
0.997s
+
11.461s

duration

@@ -93,7 +93,7 @@

summary

13 0 0 -0.110s +0.656s 100% @@ -104,7 +104,7 @@

summary

2 0 0 -0.065s +0.180s 100% @@ -120,7 +120,7 @@

summary

Generated by -Gradle 9.4.1 at Jul 30, 2026, 11:33:40 AM

+Gradle 9.4.1 at Jul 30, 2026, 11:49:54 AM

diff --git a/feature/projects/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.projects.TemplateRegistryTest.xml b/feature/projects/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.projects.TemplateRegistryTest.xml index b11b575d..e001d6b8 100644 --- a/feature/projects/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.projects.TemplateRegistryTest.xml +++ b/feature/projects/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.projects.TemplateRegistryTest.xml @@ -1,8 +1,8 @@ - + - - + + diff --git a/feature/projects/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.projects.createproject.CreateProjectViewModelTest.xml b/feature/projects/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.projects.createproject.CreateProjectViewModelTest.xml index ebdeed4f..c2100008 100644 --- a/feature/projects/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.projects.createproject.CreateProjectViewModelTest.xml +++ b/feature/projects/presentation/build/test-results/testDebugUnitTest/TEST-com.ahmadkharfan.androidstudiolite.feature.projects.createproject.CreateProjectViewModelTest.xml @@ -1,19 +1,19 @@ - + - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/feature/projects/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin b/feature/projects/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin index ef2a84e5..2b1d4c34 100644 Binary files a/feature/projects/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin and b/feature/projects/presentation/build/test-results/testDebugUnitTest/binary/results-generic.bin differ diff --git a/feature/projects/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModule.kt b/feature/projects/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModule.kt index f281d289..f9acc441 100644 --- a/feature/projects/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModule.kt +++ b/feature/projects/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/projects/di/ProjectsModule.kt @@ -3,6 +3,7 @@ package com.ahmadkharfan.androidstudiolite.feature.projects.di import com.ahmadkharfan.androidstudiolite.core.environment.IdeEnvironmentPaths import com.ahmadkharfan.androidstudiolite.feature.projects.ProjectsFeatureApiImpl import com.ahmadkharfan.androidstudiolite.feature.projects.api.ProjectsFeatureApi +import com.ahmadkharfan.androidstudiolite.feature.projects.clonerepo.CloneRepoViewModel import com.ahmadkharfan.androidstudiolite.feature.projects.createproject.CreateProjectViewModel import com.ahmadkharfan.androidstudiolite.feature.projects.folderpicker.FolderPickerViewModel import com.ahmadkharfan.androidstudiolite.feature.projects.hub.HubViewModel @@ -15,6 +16,7 @@ import org.koin.dsl.module val projectsModule = module { single { ProjectsFeatureApiImpl() } viewModelOf(::HubViewModel) + viewModelOf(::CloneRepoViewModel) viewModelOf(::OpenProjectViewModel) viewModelOf(::FolderPickerViewModel) viewModel { diff --git a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$1.dex b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$1.dex similarity index 89% rename from feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$1.dex rename to feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$1.dex index fdc9aaec..aa520af0 100644 Binary files a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$1.dex and b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$1.dex differ diff --git a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$2.dex b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$2.dex similarity index 91% rename from feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$2.dex rename to feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$2.dex index 6a33e6b9..1ff82e26 100644 Binary files a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$2.dex and b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$2.dex differ diff --git a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$3.dex b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$3.dex similarity index 90% rename from feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$3.dex rename to feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$3.dex index 1b54fdc3..ec2dd7dc 100644 Binary files a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$3.dex and b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$3.dex differ diff --git a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$4.dex b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$4.dex similarity index 90% rename from feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$4.dex rename to feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$4.dex index c6b61233..9eb1ec51 100644 Binary files a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$4.dex and b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$4.dex differ diff --git a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$5.dex b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$5.dex similarity index 92% rename from feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$5.dex rename to feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$5.dex index 9decaeea..6eecd7b4 100644 Binary files a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$5.dex and b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$5.dex differ diff --git a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.dex b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.dex index c226dc49..f6f52c11 100644 Binary files a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.dex and b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.dex differ diff --git a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$$InternalSyntheticLambda$2$b858e230009f041689e002e7c037e9e309fefa3ddf12e946a6ce38ce9393378b$0.globals b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$$InternalSyntheticLambda$2$b858e230009f041689e002e7c037e9e309fefa3ddf12e946a6ce38ce9393378b$0.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$$InternalSyntheticLambda$2$b858e230009f041689e002e7c037e9e309fefa3ddf12e946a6ce38ce9393378b$0.globals differ diff --git a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$$InternalSyntheticLambda$2$b858e230009f041689e002e7c037e9e309fefa3ddf12e946a6ce38ce9393378b$1.globals b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$$InternalSyntheticLambda$2$b858e230009f041689e002e7c037e9e309fefa3ddf12e946a6ce38ce9393378b$1.globals new file mode 100644 index 00000000..48bf5073 Binary files /dev/null and b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_global-synthetics/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$$InternalSyntheticLambda$2$b858e230009f041689e002e7c037e9e309fefa3ddf12e946a6ce38ce9393378b$1.globals differ diff --git a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin index 8f96ea2f..727c9a74 100644 Binary files a/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin and b/feature/settings/presentation/build/.transforms/7da9f76dbc69d1173e189011b9981679/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ diff --git a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$1.class b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$1.class similarity index 93% rename from feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$1.class rename to feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$1.class index 9cb5af19..cdcbbe4d 100644 Binary files a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$1.class and b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$1.class differ diff --git a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$2.class b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$2.class similarity index 95% rename from feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$2.class rename to feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$2.class index 57aeb39a..e585edf7 100644 Binary files a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$2.class and b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$2.class differ diff --git a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$3.class b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$3.class similarity index 94% rename from feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$3.class rename to feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$3.class index 80d1f110..fd53058f 100644 Binary files a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$3.class and b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$3.class differ diff --git a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$4.class b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$4.class similarity index 94% rename from feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$4.class rename to feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$4.class index df1f7226..5f31580a 100644 Binary files a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$4.class and b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$4.class differ diff --git a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$5.class b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$5.class similarity index 95% rename from feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$5.class rename to feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$5.class index b25226ce..ff1d7961 100644 Binary files a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$5.class and b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$5.class differ diff --git a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.class b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.class index f1095f73..9f7aee52 100644 Binary files a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.class and b/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.class differ diff --git a/feature/settings/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/feature/settings/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar index b4400f49..1105841d 100644 Binary files a/feature/settings/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar and b/feature/settings/presentation/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ diff --git a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$1.class b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$1.class similarity index 93% rename from feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$1.class rename to feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$1.class index 9cb5af19..cdcbbe4d 100644 Binary files a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$1.class and b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$1.class differ diff --git a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$2.class b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$2.class similarity index 95% rename from feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$2.class rename to feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$2.class index 57aeb39a..e585edf7 100644 Binary files a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$2.class and b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$2.class differ diff --git a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$3.class b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$3.class similarity index 94% rename from feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$3.class rename to feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$3.class index 80d1f110..fd53058f 100644 Binary files a/feature/settings/presentation/build/intermediates/built_in_kotlinc/debug/compileDebugKotlin/classes/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$3.class and b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$3.class differ diff --git a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$4.class b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$4.class similarity index 94% rename from feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$4.class rename to feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$4.class index df1f7226..5f31580a 100644 Binary files a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$4.class and b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$4.class differ diff --git a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$5.class b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$5.class similarity index 95% rename from feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$5.class rename to feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$5.class index b25226ce..ff1d7961 100644 Binary files a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$5$$inlined$viewModelOf$default$5.class and b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt$settingsModule$lambda$6$$inlined$viewModelOf$default$5.class differ diff --git a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.class b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.class index f1095f73..9f7aee52 100644 Binary files a/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.class and b/feature/settings/presentation/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModuleKt.class differ diff --git a/feature/settings/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/feature/settings/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar index 57b95c8d..2381ebc0 100644 Binary files a/feature/settings/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar and b/feature/settings/presentation/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab index c4230982..61e33e17 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at index 532251b5..dddab30d 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab index a91b396e..4486f38a 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream index 045ae3a2..5b071096 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len index 12389632..77366fee 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len index b4beefbd..33753905 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at index a1d400fa..8a05c672 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i index f08eca70..174fea30 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab index 01072ce3..b190076f 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at index 41f26f46..ebcda5a0 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab index ea900fe1..9e2eb84f 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at index ecc46bbd..53dbb6ac 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab index 40338673..7eff5510 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at index 23245d0b..128b2ec8 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab index 070b72f6..703ad20c 100644 --- a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +++ b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab @@ -1,2 +1,2 @@ -28 +29 0 \ No newline at end of file diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab index b0a17b7d..09ab4d06 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at index a94e801c..b70d3efe 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab index 1de58bd3..a33e51d4 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream index 4ef1e754..fa194bad 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len index 19ced97b..a930d6b3 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len index 8d483a86..fa432244 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at index ec6ac706..e1f93866 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i index c21d52aa..20619a70 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab index c5d1c402..4d43b985 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream index e6837147..8fbf5140 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len index dc033d29..6c012683 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len index b5aefde8..271d8832 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at index bca566b7..c2f9d87c 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i index 8a65a323..c6b951df 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin index 69b75b7c..71615733 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ diff --git a/feature/settings/presentation/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/feature/settings/presentation/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin index 66862fa2..f5056e37 100644 Binary files a/feature/settings/presentation/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin and b/feature/settings/presentation/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ diff --git a/feature/settings/presentation/build/reports/detekt/detekt.html b/feature/settings/presentation/build/reports/detekt/detekt.html index a586efc7..131f98e2 100644 --- a/feature/settings/presentation/build/reports/detekt/detekt.html +++ b/feature/settings/presentation/build/reports/detekt/detekt.html @@ -170,9 +170,9 @@

Complexity Report

    -
  • 2,506 lines of code (loc)
  • -
  • 2,321 source lines of code (sloc)
  • -
  • 1,646 logical lines of code (lloc)
  • +
  • 2,515 lines of code (loc)
  • +
  • 2,330 source lines of code (sloc)
  • +
  • 1,651 logical lines of code (lloc)
  • 0 comment lines of code (cloc)
  • 195 cyclomatic complexity (mcc)
  • 121 cognitive complexity
  • @@ -188,7 +188,7 @@

    Findings

    Total: 0
    -generated with detekt version 1.23.8 on 2026-07-30 08:29:08 UTC. +generated with detekt version 1.23.8 on 2026-07-30 08:49:48 UTC. diff --git a/feature/settings/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModule.kt b/feature/settings/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModule.kt index 719df254..64ad96e2 100644 --- a/feature/settings/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModule.kt +++ b/feature/settings/presentation/src/main/java/com/ahmadkharfan/androidstudiolite/feature/settings/di/SettingsModule.kt @@ -6,12 +6,21 @@ import com.ahmadkharfan.androidstudiolite.feature.settings.api.SettingsFeatureAp import com.ahmadkharfan.androidstudiolite.feature.settings.buildrun.BuildRunViewModel import com.ahmadkharfan.androidstudiolite.feature.settings.editor.EditorSettingsViewModel import com.ahmadkharfan.androidstudiolite.feature.settings.general.GeneralViewModel +import com.ahmadkharfan.androidstudiolite.feature.settings.gitauth.GitAuthSettingsViewModel import com.ahmadkharfan.androidstudiolite.feature.settings.root.SettingsRootViewModel +import org.koin.core.module.dsl.viewModel import org.koin.core.module.dsl.viewModelOf import org.koin.dsl.module val settingsModule = module { single { SettingsFeatureApiImpl() } + viewModel { + GitAuthSettingsViewModel( + credentialStore = get(), + authenticator = get(), + gitAuthorStore = get(), + ) + } viewModelOf(::SettingsRootViewModel) viewModelOf(::GeneralViewModel) viewModelOf(::EditorSettingsViewModel)