├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml ├── misc.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── shakbari │ │ │ │ └── compose │ │ │ │ └── BuildConfig.java │ │ │ └── kapt │ │ │ └── debug │ │ │ ├── com │ │ │ └── shakbari │ │ │ │ └── compose │ │ │ │ ├── App_ComponentTreeDeps.java │ │ │ │ ├── App_GeneratedInjector.java │ │ │ │ ├── App_HiltComponents.java │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC.java │ │ │ │ ├── Hilt_App.java │ │ │ │ ├── Hilt_MainActivity.java │ │ │ │ └── MainActivity_GeneratedInjector.java │ │ │ ├── dagger │ │ │ └── hilt │ │ │ │ └── internal │ │ │ │ ├── aggregatedroot │ │ │ │ └── codegen │ │ │ │ │ └── _com_shakbari_compose_App.java │ │ │ │ └── processedrootsentinel │ │ │ │ └── codegen │ │ │ │ └── _com_shakbari_compose_App.java │ │ │ └── hilt_aggregated_deps │ │ │ ├── _androidx_hilt_lifecycle_ViewModelFactoryModules_ActivityModuleModuleDeps.java │ │ │ ├── _androidx_hilt_lifecycle_ViewModelFactoryModules_FragmentModuleModuleDeps.java │ │ │ ├── _com_shakbari_compose_App.java │ │ │ ├── _com_shakbari_compose_App_GeneratedInjector.java │ │ │ └── _com_shakbari_compose_MainActivity_GeneratedInjector.java │ ├── intermediates │ │ ├── annotation_processor_list │ │ │ └── debug │ │ │ │ └── annotationProcessors.json │ │ ├── app_metadata │ │ │ └── debug │ │ │ │ └── app-metadata.properties │ │ ├── asm_instrumented_project_classes │ │ │ └── debug │ │ │ │ ├── META-INF │ │ │ │ └── app_debug.kotlin_module │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── compose │ │ │ │ │ ├── App.class │ │ │ │ │ ├── App_ComponentTreeDeps.class │ │ │ │ │ ├── App_GeneratedInjector.class │ │ │ │ │ ├── App_HiltComponents$ActivityC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ActivityC.class │ │ │ │ │ ├── App_HiltComponents$ActivityCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$ActivityRetainedC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ActivityRetainedC.class │ │ │ │ │ ├── App_HiltComponents$ActivityRetainedCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$FragmentC$Builder.class │ │ │ │ │ ├── App_HiltComponents$FragmentC.class │ │ │ │ │ ├── App_HiltComponents$FragmentCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$ServiceC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ServiceC.class │ │ │ │ │ ├── App_HiltComponents$ServiceCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$SingletonC.class │ │ │ │ │ ├── App_HiltComponents$ViewC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ViewC.class │ │ │ │ │ ├── App_HiltComponents$ViewCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$ViewModelC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ViewModelC.class │ │ │ │ │ ├── App_HiltComponents$ViewModelCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$ViewWithFragmentC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ViewWithFragmentC.class │ │ │ │ │ ├── App_HiltComponents$ViewWithFragmentCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents.class │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── ComposableSingletons$MainActivityKt$lambda-1$1$1$1.class │ │ │ │ │ ├── ComposableSingletons$MainActivityKt$lambda-1$1$1.class │ │ │ │ │ ├── ComposableSingletons$MainActivityKt$lambda-1$1.class │ │ │ │ │ ├── ComposableSingletons$MainActivityKt.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$1.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityRetainedCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityRetainedCImpl$SwitchingProvider.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityRetainedCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$Builder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$FragmentCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$FragmentCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ServiceCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ServiceCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$SwitchingProvider.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewModelCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewModelCImpl$SwitchingProvider.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewModelCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewWithFragmentCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewWithFragmentCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC.class │ │ │ │ │ ├── Hilt_App$1.class │ │ │ │ │ ├── Hilt_App.class │ │ │ │ │ ├── Hilt_MainActivity$1.class │ │ │ │ │ ├── Hilt_MainActivity.class │ │ │ │ │ ├── LiveLiterals$AppKt.class │ │ │ │ │ ├── LiveLiterals$MainActivityKt.class │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ ├── MainActivity_GeneratedInjector.class │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── ColorKt.class │ │ │ │ │ ├── ShapeKt.class │ │ │ │ │ ├── ThemeKt$ComposeBaseTheme$1.class │ │ │ │ │ ├── ThemeKt.class │ │ │ │ │ └── TypeKt.class │ │ │ │ ├── dagger │ │ │ │ └── hilt │ │ │ │ │ └── internal │ │ │ │ │ ├── aggregatedroot │ │ │ │ │ └── codegen │ │ │ │ │ │ └── _com_shakbari_compose_App.class │ │ │ │ │ └── processedrootsentinel │ │ │ │ │ └── codegen │ │ │ │ │ └── _com_shakbari_compose_App.class │ │ │ │ └── hilt_aggregated_deps │ │ │ │ ├── _androidx_hilt_lifecycle_ViewModelFactoryModules_ActivityModuleModuleDeps.class │ │ │ │ ├── _androidx_hilt_lifecycle_ViewModelFactoryModules_FragmentModuleModuleDeps.class │ │ │ │ ├── _com_shakbari_compose_App.class │ │ │ │ ├── _com_shakbari_compose_App_GeneratedInjector.class │ │ │ │ └── _com_shakbari_compose_MainActivity_GeneratedInjector.class │ │ ├── asm_instrumented_project_jars │ │ │ └── debug │ │ │ │ └── 0.jar │ │ ├── compatible_screen_manifest │ │ │ └── debug │ │ │ │ └── output-metadata.json │ │ ├── compile_and_runtime_not_namespaced_r_class_jar │ │ │ └── debug │ │ │ │ └── R.jar │ │ ├── desugar_graph │ │ │ └── debug │ │ │ │ └── out │ │ │ │ └── currentProject │ │ │ │ ├── dirs_bucket_0 │ │ │ │ └── graph.bin │ │ │ │ └── dirs_bucket_1 │ │ │ │ └── graph.bin │ │ ├── dex │ │ │ └── debug │ │ │ │ ├── mergeExtDexDebug │ │ │ │ ├── classes.dex │ │ │ │ └── classes2.dex │ │ │ │ ├── mergeLibDexDebug │ │ │ │ ├── 1 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 2 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 3 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 4 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 6 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 7 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 8 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 9 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 10 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 11 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 12 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 13 │ │ │ │ │ └── classes.dex │ │ │ │ ├── 14 │ │ │ │ │ └── classes.dex │ │ │ │ └── 15 │ │ │ │ │ └── classes.dex │ │ │ │ └── mergeProjectDexDebug │ │ │ │ ├── 0 │ │ │ │ └── classes.dex │ │ │ │ ├── 2 │ │ │ │ └── classes.dex │ │ │ │ ├── 7 │ │ │ │ └── classes.dex │ │ │ │ └── 10 │ │ │ │ └── classes.dex │ │ ├── dex_archive_input_jar_hashes │ │ │ └── debug │ │ │ │ └── out │ │ ├── dex_number_of_buckets_file │ │ │ └── debug │ │ │ │ └── out │ │ ├── incremental │ │ │ ├── debug-mergeJavaRes │ │ │ │ └── merge-state │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-as │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ ├── values-b+es+419 │ │ │ │ │ │ └── values-b+es+419.xml │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ ├── values-h320dp-port-v13 │ │ │ │ │ │ └── values-h320dp-port-v13.xml │ │ │ │ │ ├── values-h360dp-land-v13 │ │ │ │ │ │ └── values-h360dp-land-v13.xml │ │ │ │ │ ├── values-h480dp-land-v13 │ │ │ │ │ │ └── values-h480dp-land-v13.xml │ │ │ │ │ ├── values-h550dp-port-v13 │ │ │ │ │ │ └── values-h550dp-port-v13.xml │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ ├── values-ldrtl-v17 │ │ │ │ │ │ └── values-ldrtl-v17.xml │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-or │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-small-v4 │ │ │ │ │ │ └── values-small-v4.xml │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ ├── values-v26 │ │ │ │ │ │ └── values-v26.xml │ │ │ │ │ ├── values-v28 │ │ │ │ │ │ └── values-v28.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-w320dp-land-v13 │ │ │ │ │ │ └── values-w320dp-land-v13.xml │ │ │ │ │ ├── values-w360dp-port-v13 │ │ │ │ │ │ └── values-w360dp-port-v13.xml │ │ │ │ │ ├── values-w480dp-port-v13 │ │ │ │ │ │ └── values-w480dp-port-v13.xml │ │ │ │ │ ├── values-w600dp-land-v13 │ │ │ │ │ │ └── values-w600dp-land-v13.xml │ │ │ │ │ ├── values-watch-v20 │ │ │ │ │ │ └── values-watch-v20.xml │ │ │ │ │ ├── values-watch-v21 │ │ │ │ │ │ └── values-watch-v21.xml │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ └── packageDebug │ │ │ │ └── tmp │ │ │ │ └── debug │ │ │ │ ├── dex-renamer-state.txt │ │ │ │ └── zip-cache │ │ │ │ ├── androidResources │ │ │ │ └── javaResources0 │ │ ├── javac │ │ │ └── debug │ │ │ │ └── classes │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── compose │ │ │ │ │ ├── App_ComponentTreeDeps.class │ │ │ │ │ ├── App_GeneratedInjector.class │ │ │ │ │ ├── App_HiltComponents$ActivityC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ActivityC.class │ │ │ │ │ ├── App_HiltComponents$ActivityCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$ActivityRetainedC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ActivityRetainedC.class │ │ │ │ │ ├── App_HiltComponents$ActivityRetainedCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$FragmentC$Builder.class │ │ │ │ │ ├── App_HiltComponents$FragmentC.class │ │ │ │ │ ├── App_HiltComponents$FragmentCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$ServiceC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ServiceC.class │ │ │ │ │ ├── App_HiltComponents$ServiceCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$SingletonC.class │ │ │ │ │ ├── App_HiltComponents$ViewC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ViewC.class │ │ │ │ │ ├── App_HiltComponents$ViewCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$ViewModelC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ViewModelC.class │ │ │ │ │ ├── App_HiltComponents$ViewModelCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents$ViewWithFragmentC$Builder.class │ │ │ │ │ ├── App_HiltComponents$ViewWithFragmentC.class │ │ │ │ │ ├── App_HiltComponents$ViewWithFragmentCBuilderModule.class │ │ │ │ │ ├── App_HiltComponents.class │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$1.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityRetainedCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityRetainedCImpl$SwitchingProvider.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityRetainedCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$Builder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$FragmentCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$FragmentCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ServiceCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ServiceCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$SwitchingProvider.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewModelCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewModelCImpl$SwitchingProvider.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewModelCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewWithFragmentCBuilder.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewWithFragmentCImpl.class │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC.class │ │ │ │ │ ├── Hilt_App$1.class │ │ │ │ │ ├── Hilt_App.class │ │ │ │ │ ├── Hilt_MainActivity$1.class │ │ │ │ │ ├── Hilt_MainActivity.class │ │ │ │ │ └── MainActivity_GeneratedInjector.class │ │ │ │ ├── dagger │ │ │ │ └── hilt │ │ │ │ │ └── internal │ │ │ │ │ ├── aggregatedroot │ │ │ │ │ └── codegen │ │ │ │ │ │ └── _com_shakbari_compose_App.class │ │ │ │ │ └── processedrootsentinel │ │ │ │ │ └── codegen │ │ │ │ │ └── _com_shakbari_compose_App.class │ │ │ │ └── hilt_aggregated_deps │ │ │ │ ├── _androidx_hilt_lifecycle_ViewModelFactoryModules_ActivityModuleModuleDeps.class │ │ │ │ ├── _androidx_hilt_lifecycle_ViewModelFactoryModules_FragmentModuleModuleDeps.class │ │ │ │ ├── _com_shakbari_compose_App.class │ │ │ │ ├── _com_shakbari_compose_App_GeneratedInjector.class │ │ │ │ └── _com_shakbari_compose_MainActivity_GeneratedInjector.class │ │ ├── manifest_merge_blame_file │ │ │ └── debug │ │ │ │ └── manifest-merger-blame-debug-report.txt │ │ ├── merged_java_res │ │ │ └── debug │ │ │ │ └── base.jar │ │ ├── merged_manifest │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── merged_manifests │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output-metadata.json │ │ ├── merged_res │ │ │ └── debug │ │ │ │ ├── drawable-v24_ic_launcher_foreground.xml.flat │ │ │ │ ├── drawable_ic_launcher_background.xml.flat │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher.xml.flat │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat │ │ │ │ ├── mipmap-hdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-hdpi_ic_launcher_round.webp.flat │ │ │ │ ├── mipmap-mdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-mdpi_ic_launcher_round.webp.flat │ │ │ │ ├── mipmap-xhdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-xhdpi_ic_launcher_round.webp.flat │ │ │ │ ├── mipmap-xxhdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_round.webp.flat │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_round.webp.flat │ │ │ │ ├── values-af_values-af.arsc.flat │ │ │ │ ├── values-am_values-am.arsc.flat │ │ │ │ ├── values-ar_values-ar.arsc.flat │ │ │ │ ├── values-as_values-as.arsc.flat │ │ │ │ ├── values-az_values-az.arsc.flat │ │ │ │ ├── values-b+es+419_values-b+es+419.arsc.flat │ │ │ │ ├── values-b+sr+Latn_values-b+sr+Latn.arsc.flat │ │ │ │ ├── values-be_values-be.arsc.flat │ │ │ │ ├── values-bg_values-bg.arsc.flat │ │ │ │ ├── values-bn_values-bn.arsc.flat │ │ │ │ ├── values-bs_values-bs.arsc.flat │ │ │ │ ├── values-ca_values-ca.arsc.flat │ │ │ │ ├── values-cs_values-cs.arsc.flat │ │ │ │ ├── values-da_values-da.arsc.flat │ │ │ │ ├── values-de_values-de.arsc.flat │ │ │ │ ├── values-el_values-el.arsc.flat │ │ │ │ ├── values-en-rAU_values-en-rAU.arsc.flat │ │ │ │ ├── values-en-rCA_values-en-rCA.arsc.flat │ │ │ │ ├── values-en-rGB_values-en-rGB.arsc.flat │ │ │ │ ├── values-en-rIN_values-en-rIN.arsc.flat │ │ │ │ ├── values-en-rXC_values-en-rXC.arsc.flat │ │ │ │ ├── values-es-rUS_values-es-rUS.arsc.flat │ │ │ │ ├── values-es_values-es.arsc.flat │ │ │ │ ├── values-et_values-et.arsc.flat │ │ │ │ ├── values-eu_values-eu.arsc.flat │ │ │ │ ├── values-fa_values-fa.arsc.flat │ │ │ │ ├── values-fi_values-fi.arsc.flat │ │ │ │ ├── values-fr-rCA_values-fr-rCA.arsc.flat │ │ │ │ ├── values-fr_values-fr.arsc.flat │ │ │ │ ├── values-gl_values-gl.arsc.flat │ │ │ │ ├── values-gu_values-gu.arsc.flat │ │ │ │ ├── values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat │ │ │ │ ├── values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat │ │ │ │ ├── values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat │ │ │ │ ├── values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat │ │ │ │ ├── values-h720dp-v13_values-h720dp-v13.arsc.flat │ │ │ │ ├── values-hdpi-v4_values-hdpi-v4.arsc.flat │ │ │ │ ├── values-hi_values-hi.arsc.flat │ │ │ │ ├── values-hr_values-hr.arsc.flat │ │ │ │ ├── values-hu_values-hu.arsc.flat │ │ │ │ ├── values-hy_values-hy.arsc.flat │ │ │ │ ├── values-in_values-in.arsc.flat │ │ │ │ ├── values-is_values-is.arsc.flat │ │ │ │ ├── values-it_values-it.arsc.flat │ │ │ │ ├── values-iw_values-iw.arsc.flat │ │ │ │ ├── values-ja_values-ja.arsc.flat │ │ │ │ ├── values-ka_values-ka.arsc.flat │ │ │ │ ├── values-kk_values-kk.arsc.flat │ │ │ │ ├── values-km_values-km.arsc.flat │ │ │ │ ├── values-kn_values-kn.arsc.flat │ │ │ │ ├── values-ko_values-ko.arsc.flat │ │ │ │ ├── values-ky_values-ky.arsc.flat │ │ │ │ ├── values-land_values-land.arsc.flat │ │ │ │ ├── values-large-v4_values-large-v4.arsc.flat │ │ │ │ ├── values-ldltr-v21_values-ldltr-v21.arsc.flat │ │ │ │ ├── values-ldrtl-v17_values-ldrtl-v17.arsc.flat │ │ │ │ ├── values-lo_values-lo.arsc.flat │ │ │ │ ├── values-lt_values-lt.arsc.flat │ │ │ │ ├── values-lv_values-lv.arsc.flat │ │ │ │ ├── values-mk_values-mk.arsc.flat │ │ │ │ ├── values-ml_values-ml.arsc.flat │ │ │ │ ├── values-mn_values-mn.arsc.flat │ │ │ │ ├── values-mr_values-mr.arsc.flat │ │ │ │ ├── values-ms_values-ms.arsc.flat │ │ │ │ ├── values-my_values-my.arsc.flat │ │ │ │ ├── values-nb_values-nb.arsc.flat │ │ │ │ ├── values-ne_values-ne.arsc.flat │ │ │ │ ├── values-night-v8_values-night-v8.arsc.flat │ │ │ │ ├── values-nl_values-nl.arsc.flat │ │ │ │ ├── values-or_values-or.arsc.flat │ │ │ │ ├── values-pa_values-pa.arsc.flat │ │ │ │ ├── values-pl_values-pl.arsc.flat │ │ │ │ ├── values-port_values-port.arsc.flat │ │ │ │ ├── values-pt-rBR_values-pt-rBR.arsc.flat │ │ │ │ ├── values-pt-rPT_values-pt-rPT.arsc.flat │ │ │ │ ├── values-pt_values-pt.arsc.flat │ │ │ │ ├── values-ro_values-ro.arsc.flat │ │ │ │ ├── values-ru_values-ru.arsc.flat │ │ │ │ ├── values-si_values-si.arsc.flat │ │ │ │ ├── values-sk_values-sk.arsc.flat │ │ │ │ ├── values-sl_values-sl.arsc.flat │ │ │ │ ├── values-small-v4_values-small-v4.arsc.flat │ │ │ │ ├── values-sq_values-sq.arsc.flat │ │ │ │ ├── values-sr_values-sr.arsc.flat │ │ │ │ ├── values-sv_values-sv.arsc.flat │ │ │ │ ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat │ │ │ │ ├── values-sw_values-sw.arsc.flat │ │ │ │ ├── values-ta_values-ta.arsc.flat │ │ │ │ ├── values-te_values-te.arsc.flat │ │ │ │ ├── values-th_values-th.arsc.flat │ │ │ │ ├── values-tl_values-tl.arsc.flat │ │ │ │ ├── values-tr_values-tr.arsc.flat │ │ │ │ ├── values-uk_values-uk.arsc.flat │ │ │ │ ├── values-ur_values-ur.arsc.flat │ │ │ │ ├── values-uz_values-uz.arsc.flat │ │ │ │ ├── values-v16_values-v16.arsc.flat │ │ │ │ ├── values-v17_values-v17.arsc.flat │ │ │ │ ├── values-v18_values-v18.arsc.flat │ │ │ │ ├── values-v21_values-v21.arsc.flat │ │ │ │ ├── values-v22_values-v22.arsc.flat │ │ │ │ ├── values-v23_values-v23.arsc.flat │ │ │ │ ├── values-v24_values-v24.arsc.flat │ │ │ │ ├── values-v25_values-v25.arsc.flat │ │ │ │ ├── values-v26_values-v26.arsc.flat │ │ │ │ ├── values-v28_values-v28.arsc.flat │ │ │ │ ├── values-vi_values-vi.arsc.flat │ │ │ │ ├── values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat │ │ │ │ ├── values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat │ │ │ │ ├── values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat │ │ │ │ ├── values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat │ │ │ │ ├── values-watch-v20_values-watch-v20.arsc.flat │ │ │ │ ├── values-watch-v21_values-watch-v21.arsc.flat │ │ │ │ ├── values-xlarge-v4_values-xlarge-v4.arsc.flat │ │ │ │ ├── values-zh-rCN_values-zh-rCN.arsc.flat │ │ │ │ ├── values-zh-rHK_values-zh-rHK.arsc.flat │ │ │ │ ├── values-zh-rTW_values-zh-rTW.arsc.flat │ │ │ │ ├── values-zu_values-zu.arsc.flat │ │ │ │ └── values_values.arsc.flat │ │ ├── merged_res_blame_folder │ │ │ └── debug │ │ │ │ └── out │ │ │ │ ├── multi-v2 │ │ │ │ ├── debug.json │ │ │ │ ├── values-af.json │ │ │ │ ├── values-am.json │ │ │ │ ├── values-ar.json │ │ │ │ ├── values-as.json │ │ │ │ ├── values-az.json │ │ │ │ ├── values-b+es+419.json │ │ │ │ ├── values-b+sr+Latn.json │ │ │ │ ├── values-be.json │ │ │ │ ├── values-bg.json │ │ │ │ ├── values-bn.json │ │ │ │ ├── values-bs.json │ │ │ │ ├── values-ca.json │ │ │ │ ├── values-cs.json │ │ │ │ ├── values-da.json │ │ │ │ ├── values-de.json │ │ │ │ ├── values-el.json │ │ │ │ ├── values-en-rAU.json │ │ │ │ ├── values-en-rCA.json │ │ │ │ ├── values-en-rGB.json │ │ │ │ ├── values-en-rIN.json │ │ │ │ ├── values-en-rXC.json │ │ │ │ ├── values-es-rUS.json │ │ │ │ ├── values-es.json │ │ │ │ ├── values-et.json │ │ │ │ ├── values-eu.json │ │ │ │ ├── values-fa.json │ │ │ │ ├── values-fi.json │ │ │ │ ├── values-fr-rCA.json │ │ │ │ ├── values-fr.json │ │ │ │ ├── values-gl.json │ │ │ │ ├── values-gu.json │ │ │ │ ├── values-h320dp-port-v13.json │ │ │ │ ├── values-h360dp-land-v13.json │ │ │ │ ├── values-h480dp-land-v13.json │ │ │ │ ├── values-h550dp-port-v13.json │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ ├── values-hi.json │ │ │ │ ├── values-hr.json │ │ │ │ ├── values-hu.json │ │ │ │ ├── values-hy.json │ │ │ │ ├── values-in.json │ │ │ │ ├── values-is.json │ │ │ │ ├── values-it.json │ │ │ │ ├── values-iw.json │ │ │ │ ├── values-ja.json │ │ │ │ ├── values-ka.json │ │ │ │ ├── values-kk.json │ │ │ │ ├── values-km.json │ │ │ │ ├── values-kn.json │ │ │ │ ├── values-ko.json │ │ │ │ ├── values-ky.json │ │ │ │ ├── values-land.json │ │ │ │ ├── values-large-v4.json │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ ├── values-ldrtl-v17.json │ │ │ │ ├── values-lo.json │ │ │ │ ├── values-lt.json │ │ │ │ ├── values-lv.json │ │ │ │ ├── values-mk.json │ │ │ │ ├── values-ml.json │ │ │ │ ├── values-mn.json │ │ │ │ ├── values-mr.json │ │ │ │ ├── values-ms.json │ │ │ │ ├── values-my.json │ │ │ │ ├── values-nb.json │ │ │ │ ├── values-ne.json │ │ │ │ ├── values-night-v8.json │ │ │ │ ├── values-nl.json │ │ │ │ ├── values-or.json │ │ │ │ ├── values-pa.json │ │ │ │ ├── values-pl.json │ │ │ │ ├── values-port.json │ │ │ │ ├── values-pt-rBR.json │ │ │ │ ├── values-pt-rPT.json │ │ │ │ ├── values-pt.json │ │ │ │ ├── values-ro.json │ │ │ │ ├── values-ru.json │ │ │ │ ├── values-si.json │ │ │ │ ├── values-sk.json │ │ │ │ ├── values-sl.json │ │ │ │ ├── values-small-v4.json │ │ │ │ ├── values-sq.json │ │ │ │ ├── values-sr.json │ │ │ │ ├── values-sv.json │ │ │ │ ├── values-sw.json │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ ├── values-ta.json │ │ │ │ ├── values-te.json │ │ │ │ ├── values-th.json │ │ │ │ ├── values-tl.json │ │ │ │ ├── values-tr.json │ │ │ │ ├── values-uk.json │ │ │ │ ├── values-ur.json │ │ │ │ ├── values-uz.json │ │ │ │ ├── values-v16.json │ │ │ │ ├── values-v17.json │ │ │ │ ├── values-v18.json │ │ │ │ ├── values-v21.json │ │ │ │ ├── values-v22.json │ │ │ │ ├── values-v23.json │ │ │ │ ├── values-v24.json │ │ │ │ ├── values-v25.json │ │ │ │ ├── values-v26.json │ │ │ │ ├── values-v28.json │ │ │ │ ├── values-vi.json │ │ │ │ ├── values-w320dp-land-v13.json │ │ │ │ ├── values-w360dp-port-v13.json │ │ │ │ ├── values-w480dp-port-v13.json │ │ │ │ ├── values-w600dp-land-v13.json │ │ │ │ ├── values-watch-v20.json │ │ │ │ ├── values-watch-v21.json │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ ├── values-zh-rCN.json │ │ │ │ ├── values-zh-rHK.json │ │ │ │ ├── values-zh-rTW.json │ │ │ │ ├── values-zu.json │ │ │ │ └── values.json │ │ │ │ └── single │ │ │ │ └── debug.json │ │ ├── navigation_json │ │ │ └── debug │ │ │ │ └── navigation.json │ │ ├── packaged_manifests │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output-metadata.json │ │ ├── processed_res │ │ │ └── debug │ │ │ │ └── out │ │ │ │ ├── output-metadata.json │ │ │ │ └── resources-debug.ap_ │ │ ├── project_dex_archive │ │ │ └── debug │ │ │ │ └── out │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── compose │ │ │ │ │ ├── App.dex │ │ │ │ │ ├── App_ComponentTreeDeps.dex │ │ │ │ │ ├── App_GeneratedInjector.dex │ │ │ │ │ ├── App_HiltComponents$ActivityC$Builder.dex │ │ │ │ │ ├── App_HiltComponents$ActivityC.dex │ │ │ │ │ ├── App_HiltComponents$ActivityCBuilderModule.dex │ │ │ │ │ ├── App_HiltComponents$ActivityRetainedC$Builder.dex │ │ │ │ │ ├── App_HiltComponents$ActivityRetainedC.dex │ │ │ │ │ ├── App_HiltComponents$ActivityRetainedCBuilderModule.dex │ │ │ │ │ ├── App_HiltComponents$FragmentC$Builder.dex │ │ │ │ │ ├── App_HiltComponents$FragmentC.dex │ │ │ │ │ ├── App_HiltComponents$FragmentCBuilderModule.dex │ │ │ │ │ ├── App_HiltComponents$ServiceC$Builder.dex │ │ │ │ │ ├── App_HiltComponents$ServiceC.dex │ │ │ │ │ ├── App_HiltComponents$ServiceCBuilderModule.dex │ │ │ │ │ ├── App_HiltComponents$SingletonC.dex │ │ │ │ │ ├── App_HiltComponents$ViewC$Builder.dex │ │ │ │ │ ├── App_HiltComponents$ViewC.dex │ │ │ │ │ ├── App_HiltComponents$ViewCBuilderModule.dex │ │ │ │ │ ├── App_HiltComponents$ViewModelC$Builder.dex │ │ │ │ │ ├── App_HiltComponents$ViewModelC.dex │ │ │ │ │ ├── App_HiltComponents$ViewModelCBuilderModule.dex │ │ │ │ │ ├── App_HiltComponents$ViewWithFragmentC$Builder.dex │ │ │ │ │ ├── App_HiltComponents$ViewWithFragmentC.dex │ │ │ │ │ ├── App_HiltComponents$ViewWithFragmentCBuilderModule.dex │ │ │ │ │ ├── App_HiltComponents.dex │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ ├── ComposableSingletons$MainActivityKt$lambda-1$1$1$1.dex │ │ │ │ │ ├── ComposableSingletons$MainActivityKt$lambda-1$1$1.dex │ │ │ │ │ ├── ComposableSingletons$MainActivityKt$lambda-1$1.dex │ │ │ │ │ ├── ComposableSingletons$MainActivityKt.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$1.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityCBuilder.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityCImpl.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityRetainedCBuilder.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityRetainedCImpl$SwitchingProvider.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ActivityRetainedCImpl.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$Builder.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$FragmentCBuilder.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$FragmentCImpl.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ServiceCBuilder.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ServiceCImpl.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$SwitchingProvider.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewCBuilder.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewCImpl.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewModelCBuilder.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewModelCImpl$SwitchingProvider.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewModelCImpl.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewWithFragmentCBuilder.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC$ViewWithFragmentCImpl.dex │ │ │ │ │ ├── DaggerApp_HiltComponents_SingletonC.dex │ │ │ │ │ ├── Hilt_App$1.dex │ │ │ │ │ ├── Hilt_App.dex │ │ │ │ │ ├── Hilt_MainActivity$1.dex │ │ │ │ │ ├── Hilt_MainActivity.dex │ │ │ │ │ ├── LiveLiterals$AppKt.dex │ │ │ │ │ ├── LiveLiterals$MainActivityKt.dex │ │ │ │ │ ├── MainActivity.dex │ │ │ │ │ ├── MainActivity_GeneratedInjector.dex │ │ │ │ │ └── ui │ │ │ │ │ └── theme │ │ │ │ │ ├── ColorKt.dex │ │ │ │ │ ├── ShapeKt.dex │ │ │ │ │ ├── ThemeKt$ComposeBaseTheme$1.dex │ │ │ │ │ ├── ThemeKt.dex │ │ │ │ │ └── TypeKt.dex │ │ │ │ ├── dagger │ │ │ │ └── hilt │ │ │ │ │ └── internal │ │ │ │ │ ├── aggregatedroot │ │ │ │ │ └── codegen │ │ │ │ │ │ └── _com_shakbari_compose_App.dex │ │ │ │ │ └── processedrootsentinel │ │ │ │ │ └── codegen │ │ │ │ │ └── _com_shakbari_compose_App.dex │ │ │ │ └── hilt_aggregated_deps │ │ │ │ ├── _androidx_hilt_lifecycle_ViewModelFactoryModules_ActivityModuleModuleDeps.dex │ │ │ │ ├── _androidx_hilt_lifecycle_ViewModelFactoryModules_FragmentModuleModuleDeps.dex │ │ │ │ ├── _com_shakbari_compose_App.dex │ │ │ │ ├── _com_shakbari_compose_App_GeneratedInjector.dex │ │ │ │ └── _com_shakbari_compose_MainActivity_GeneratedInjector.dex │ │ ├── runtime_symbol_list │ │ │ └── debug │ │ │ │ └── R.txt │ │ ├── signing_config_versions │ │ │ └── debug │ │ │ │ └── signing-config-versions.json │ │ ├── stable_resource_ids_file │ │ │ └── debug │ │ │ │ └── stableIds.txt │ │ └── symbol_list_with_package_name │ │ │ └── debug │ │ │ └── package-aware-r.txt │ ├── kotlin │ │ ├── compileDebugKotlin │ │ │ ├── build-history.bin │ │ │ ├── caches-jvm │ │ │ │ ├── inputs │ │ │ │ │ ├── source-to-output.tab │ │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ │ ├── source-to-output.tab.len │ │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ │ ├── source-to-output.tab_i │ │ │ │ │ └── source-to-output.tab_i.len │ │ │ │ ├── jvm │ │ │ │ │ └── kotlin │ │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ │ ├── proto.tab │ │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ │ └── supertypes.tab_i.len │ │ │ │ └── lookups │ │ │ │ │ ├── counters.tab │ │ │ │ │ ├── file-to-id.tab │ │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ │ ├── file-to-id.tab.len │ │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ │ ├── file-to-id.tab_i │ │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ │ ├── id-to-file.tab │ │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ │ ├── id-to-file.tab.len │ │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ │ ├── id-to-file.tab_i │ │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ │ ├── lookups.tab │ │ │ │ │ ├── lookups.tab.keystream │ │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ │ ├── lookups.tab.len │ │ │ │ │ ├── lookups.tab.values.at │ │ │ │ │ ├── lookups.tab_i │ │ │ │ │ └── lookups.tab_i.len │ │ │ └── last-build.bin │ │ └── kaptGenerateStubsDebugKotlin │ │ │ ├── build-history.bin │ │ │ ├── caches-jvm │ │ │ ├── inputs │ │ │ │ ├── source-to-output.tab │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ ├── source-to-output.tab.len │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ ├── source-to-output.tab_i │ │ │ │ └── source-to-output.tab_i.len │ │ │ ├── jvm │ │ │ │ └── kotlin │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ ├── proto.tab │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ └── supertypes.tab_i.len │ │ │ └── lookups │ │ │ │ ├── counters.tab │ │ │ │ ├── file-to-id.tab │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ ├── file-to-id.tab.len │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ ├── file-to-id.tab_i │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ ├── id-to-file.tab │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ ├── id-to-file.tab.len │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ ├── id-to-file.tab_i │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ ├── lookups.tab │ │ │ │ ├── lookups.tab.keystream │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ ├── lookups.tab.len │ │ │ │ ├── lookups.tab.values.at │ │ │ │ ├── lookups.tab_i │ │ │ │ └── lookups.tab_i.len │ │ │ └── last-build.bin │ ├── outputs │ │ ├── apk │ │ │ └── debug │ │ │ │ ├── app-debug.apk │ │ │ │ └── output-metadata.json │ │ └── logs │ │ │ └── manifest-merger-debug-report.txt │ └── tmp │ │ ├── compileDebugJavaWithJavac │ │ └── source-classes-mapping.txt │ │ ├── kapt3 │ │ ├── incApCache │ │ │ └── debug │ │ │ │ ├── ap-classpath-entries.bin │ │ │ │ ├── apt-cache.bin │ │ │ │ ├── classpath-entries.bin │ │ │ │ ├── classpath-structure.bin │ │ │ │ └── java-cache.bin │ │ ├── incrementalData │ │ │ └── debug │ │ │ │ ├── META-INF │ │ │ │ └── app_debug.kotlin_module │ │ │ │ └── com │ │ │ │ └── shakbari │ │ │ │ └── compose │ │ │ │ ├── App.class │ │ │ │ ├── MainActivity.class │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── ColorKt.class │ │ │ │ ├── ShapeKt.class │ │ │ │ ├── ThemeKt.class │ │ │ │ └── TypeKt.class │ │ └── stubs │ │ │ └── debug │ │ │ ├── com │ │ │ └── shakbari │ │ │ │ └── compose │ │ │ │ ├── App.java │ │ │ │ ├── App.kapt_metadata │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainActivity.kapt_metadata │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── ColorKt.java │ │ │ │ ├── ColorKt.kapt_metadata │ │ │ │ ├── ShapeKt.java │ │ │ │ ├── ShapeKt.kapt_metadata │ │ │ │ ├── ThemeKt.java │ │ │ │ ├── ThemeKt.kapt_metadata │ │ │ │ ├── TypeKt.java │ │ │ │ └── TypeKt.kapt_metadata │ │ │ └── error │ │ │ └── NonExistentClass.java │ │ └── kotlin-classes │ │ └── debug │ │ ├── META-INF │ │ └── app_debug.kotlin_module │ │ └── com │ │ └── shakbari │ │ └── compose │ │ ├── App.class │ │ ├── ComposableSingletons$MainActivityKt$lambda-1$1$1$1.class │ │ ├── ComposableSingletons$MainActivityKt$lambda-1$1$1.class │ │ ├── ComposableSingletons$MainActivityKt$lambda-1$1.class │ │ ├── ComposableSingletons$MainActivityKt.class │ │ ├── LiveLiterals$AppKt.class │ │ ├── LiveLiterals$MainActivityKt.class │ │ ├── MainActivity.class │ │ └── ui │ │ └── theme │ │ ├── ColorKt.class │ │ ├── ShapeKt.class │ │ ├── ThemeKt$ComposeBaseTheme$1.class │ │ ├── ThemeKt.class │ │ └── TypeKt.class ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── shakbari │ │ └── compose │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── shakbari │ │ │ └── compose │ │ │ ├── App.kt │ │ │ ├── MainActivity.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── shakbari │ └── compose │ └── ExampleUnitTest.kt ├── build.gradle ├── core ├── .gitignore ├── build.gradle ├── build │ ├── .transforms │ │ ├── 10abec9915f1c7ca9f09c34b75a33566 │ │ │ └── results.bin │ │ ├── 29c2f635f731d93de72d14bdcff73338 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ ├── debug │ │ │ │ ├── com │ │ │ │ │ └── shakbari │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ │ ├── base │ │ │ │ │ │ ├── DataState$Error.dex │ │ │ │ │ │ ├── DataState$Loading.dex │ │ │ │ │ │ ├── DataState$Success.dex │ │ │ │ │ │ ├── DataState.dex │ │ │ │ │ │ ├── LiveLiterals$DataStateKt.dex │ │ │ │ │ │ ├── LiveLiterals$ViewStateKt.dex │ │ │ │ │ │ ├── ViewState$Empty.dex │ │ │ │ │ │ ├── ViewState$Error.dex │ │ │ │ │ │ ├── ViewState$Loading.dex │ │ │ │ │ │ ├── ViewState$Success.dex │ │ │ │ │ │ └── ViewState.dex │ │ │ │ │ │ ├── di │ │ │ │ │ │ ├── LiveLiterals$RetrofitModuleKt.dex │ │ │ │ │ │ ├── RetrofitModule.dex │ │ │ │ │ │ ├── RetrofitModule_ProvideOkHttpClientFactory.dex │ │ │ │ │ │ ├── RetrofitModule_ProvideRetrofitFactory.dex │ │ │ │ │ │ ├── RetrofitModule_ProvideUtilsFactory.dex │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── LiveLiterals$RetrofitConfigKt.dex │ │ │ │ │ │ │ └── RetrofitConfig.dex │ │ │ │ │ │ ├── preferences │ │ │ │ │ │ ├── LiveLiterals$TokenPreferencesManagerKt.dex │ │ │ │ │ │ ├── TokenPreferencesManager$Companion.dex │ │ │ │ │ │ ├── TokenPreferencesManager$editor$2.dex │ │ │ │ │ │ ├── TokenPreferencesManager$pref$2.dex │ │ │ │ │ │ └── TokenPreferencesManager.dex │ │ │ │ │ │ └── uikit │ │ │ │ │ │ └── compose │ │ │ │ │ │ ├── AvatarImageWithCoilKt$AvatarImageWithCoil$1.dex │ │ │ │ │ │ ├── AvatarImageWithCoilKt.dex │ │ │ │ │ │ ├── ErrorViewKt$ErrorView$2.dex │ │ │ │ │ │ ├── ErrorViewKt.dex │ │ │ │ │ │ ├── LiveLiterals$AvatarImageWithCoilKt.dex │ │ │ │ │ │ ├── LiveLiterals$ErrorViewKt.dex │ │ │ │ │ │ ├── LoadingViewKt$LoadingView$2.dex │ │ │ │ │ │ └── LoadingViewKt.dex │ │ │ │ └── hilt_aggregated_deps │ │ │ │ │ └── _com_shakbari_core_di_RetrofitModule.dex │ │ │ │ └── desugar_graph.bin │ │ ├── 41cf0d71979c051fc7aedeacd9250133 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ ├── debug │ │ │ │ ├── com │ │ │ │ │ └── shakbari │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ │ ├── base │ │ │ │ │ │ ├── BaseAdapter$hideLoading$1.dex │ │ │ │ │ │ ├── BaseAdapter$showLoading$1.dex │ │ │ │ │ │ ├── BaseAdapter.dex │ │ │ │ │ │ ├── DataState$Error.dex │ │ │ │ │ │ ├── DataState$Loading.dex │ │ │ │ │ │ ├── DataState$Success.dex │ │ │ │ │ │ ├── DataState.dex │ │ │ │ │ │ ├── LiveLiterals$BaseAdapterKt.dex │ │ │ │ │ │ ├── LiveLiterals$DataStateKt.dex │ │ │ │ │ │ ├── LiveLiterals$ResourceKt.dex │ │ │ │ │ │ ├── LiveLiterals$ViewStateKt.dex │ │ │ │ │ │ ├── Resource$Companion.dex │ │ │ │ │ │ ├── Resource.dex │ │ │ │ │ │ ├── Status.dex │ │ │ │ │ │ ├── ViewState$Empty.dex │ │ │ │ │ │ ├── ViewState$Error.dex │ │ │ │ │ │ ├── ViewState$Loading.dex │ │ │ │ │ │ ├── ViewState$Success.dex │ │ │ │ │ │ └── ViewState.dex │ │ │ │ │ │ ├── di │ │ │ │ │ │ ├── LiveLiterals$RetrofitModuleKt.dex │ │ │ │ │ │ ├── RetrofitModule.dex │ │ │ │ │ │ ├── RetrofitModule_ProvideOkHttpClientFactory.dex │ │ │ │ │ │ ├── RetrofitModule_ProvideRetrofitFactory.dex │ │ │ │ │ │ ├── RetrofitModule_ProvideUtilsFactory.dex │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── LiveLiterals$RetrofitConfigKt.dex │ │ │ │ │ │ │ └── RetrofitConfig.dex │ │ │ │ │ │ ├── extension │ │ │ │ │ │ ├── AcitivtyExtensionKt.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt$animateBackgroundColor$1.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt$animateBackgroundColor$2.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt$animateTextColor$1.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt$colorEvaluator$2.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt.dex │ │ │ │ │ │ ├── ContextExtensionKt.dex │ │ │ │ │ │ ├── DisplayParams.dex │ │ │ │ │ │ ├── DrawableExtensionKt.dex │ │ │ │ │ │ ├── FragmentExtensionKt.dex │ │ │ │ │ │ ├── FunctionExtensionKt.dex │ │ │ │ │ │ ├── ImageViewExtensionKt.dex │ │ │ │ │ │ ├── ListExtensionsKt.dex │ │ │ │ │ │ ├── LiveLiterals$AcitivtyExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$AnimateColorExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$ContextExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$FragmentExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$FunctionExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$ListExtensionsKt.dex │ │ │ │ │ │ ├── LiveLiterals$RecyclerViewExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$TextViewExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$VariableExtentionKt.dex │ │ │ │ │ │ ├── LiveLiterals$ViewExtensionKt.dex │ │ │ │ │ │ ├── RecyclerViewExtensionKt$onLoadMore$1.dex │ │ │ │ │ │ ├── RecyclerViewExtensionKt.dex │ │ │ │ │ │ ├── TextViewExtensionKt$toRial$1.dex │ │ │ │ │ │ ├── TextViewExtensionKt$toRial$2.dex │ │ │ │ │ │ ├── TextViewExtensionKt.dex │ │ │ │ │ │ ├── VariableExtentionKt$toMd5$1.dex │ │ │ │ │ │ ├── VariableExtentionKt$toSha1$1.dex │ │ │ │ │ │ ├── VariableExtentionKt.dex │ │ │ │ │ │ └── ViewExtensionKt.dex │ │ │ │ │ │ ├── preferences │ │ │ │ │ │ ├── LiveLiterals$TokenPreferencesManagerKt.dex │ │ │ │ │ │ ├── TokenPreferencesManager$Companion.dex │ │ │ │ │ │ ├── TokenPreferencesManager$editor$2.dex │ │ │ │ │ │ ├── TokenPreferencesManager$pref$2.dex │ │ │ │ │ │ └── TokenPreferencesManager.dex │ │ │ │ │ │ └── uikit │ │ │ │ │ │ └── compose │ │ │ │ │ │ ├── AvatarImageWithCoilKt$AvatarImageWithCoil$1.dex │ │ │ │ │ │ ├── AvatarImageWithCoilKt.dex │ │ │ │ │ │ ├── ErrorViewKt$ErrorView$2.dex │ │ │ │ │ │ ├── ErrorViewKt.dex │ │ │ │ │ │ ├── LiveLiterals$AvatarImageWithCoilKt.dex │ │ │ │ │ │ ├── LiveLiterals$ErrorViewKt.dex │ │ │ │ │ │ ├── LoadingViewKt$LoadingView$2.dex │ │ │ │ │ │ └── LoadingViewKt.dex │ │ │ │ └── hilt_aggregated_deps │ │ │ │ │ └── _com_shakbari_core_di_RetrofitModule.dex │ │ │ │ └── desugar_graph.bin │ │ ├── 84e4be0b5c9949eb3ee71fd15f9847b5 │ │ │ └── results.bin │ │ ├── 85496e62c4481f51f0d82431c7ac5a1e │ │ │ └── results.bin │ │ ├── 8cdd8049c614cff7c6bf7d030310b21c │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ ├── debug │ │ │ │ ├── com │ │ │ │ │ └── shakbari │ │ │ │ │ │ └── core │ │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ │ ├── base │ │ │ │ │ │ ├── BaseAdapter$hideLoading$1.dex │ │ │ │ │ │ ├── BaseAdapter$showLoading$1.dex │ │ │ │ │ │ ├── BaseAdapter.dex │ │ │ │ │ │ ├── DataState$Error.dex │ │ │ │ │ │ ├── DataState$Loading.dex │ │ │ │ │ │ ├── DataState$Success.dex │ │ │ │ │ │ ├── DataState.dex │ │ │ │ │ │ ├── LiveLiterals$BaseAdapterKt.dex │ │ │ │ │ │ ├── LiveLiterals$DataStateKt.dex │ │ │ │ │ │ ├── LiveLiterals$ResourceKt.dex │ │ │ │ │ │ ├── LiveLiterals$ViewStateKt.dex │ │ │ │ │ │ ├── Resource$Companion.dex │ │ │ │ │ │ ├── Resource.dex │ │ │ │ │ │ ├── Status.dex │ │ │ │ │ │ ├── ViewState$Empty.dex │ │ │ │ │ │ ├── ViewState$Error.dex │ │ │ │ │ │ ├── ViewState$Loading.dex │ │ │ │ │ │ ├── ViewState$Success.dex │ │ │ │ │ │ └── ViewState.dex │ │ │ │ │ │ ├── di │ │ │ │ │ │ ├── LiveLiterals$RetrofitModuleKt.dex │ │ │ │ │ │ ├── RetrofitModule.dex │ │ │ │ │ │ ├── RetrofitModule_ProvideOkHttpClientFactory.dex │ │ │ │ │ │ ├── RetrofitModule_ProvideRetrofitFactory.dex │ │ │ │ │ │ ├── RetrofitModule_ProvideUtilsFactory.dex │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── LiveLiterals$RetrofitConfigKt.dex │ │ │ │ │ │ │ └── RetrofitConfig.dex │ │ │ │ │ │ ├── extension │ │ │ │ │ │ ├── AcitivtyExtensionKt.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt$animateBackgroundColor$1.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt$animateBackgroundColor$2.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt$animateTextColor$1.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt$colorEvaluator$2.dex │ │ │ │ │ │ ├── AnimateColorExtensionKt.dex │ │ │ │ │ │ ├── ContextExtensionKt.dex │ │ │ │ │ │ ├── DisplayParams.dex │ │ │ │ │ │ ├── DrawableExtensionKt.dex │ │ │ │ │ │ ├── FragmentExtensionKt.dex │ │ │ │ │ │ ├── FunctionExtensionKt.dex │ │ │ │ │ │ ├── ImageViewExtensionKt.dex │ │ │ │ │ │ ├── ListExtensionsKt.dex │ │ │ │ │ │ ├── LiveLiterals$AcitivtyExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$AnimateColorExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$ContextExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$FragmentExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$FunctionExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$ListExtensionsKt.dex │ │ │ │ │ │ ├── LiveLiterals$RecyclerViewExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$TextViewExtensionKt.dex │ │ │ │ │ │ ├── LiveLiterals$VariableExtentionKt.dex │ │ │ │ │ │ ├── LiveLiterals$ViewExtensionKt.dex │ │ │ │ │ │ ├── RecyclerViewExtensionKt$onLoadMore$1.dex │ │ │ │ │ │ ├── RecyclerViewExtensionKt.dex │ │ │ │ │ │ ├── TextViewExtensionKt$toRial$1.dex │ │ │ │ │ │ ├── TextViewExtensionKt$toRial$2.dex │ │ │ │ │ │ ├── TextViewExtensionKt.dex │ │ │ │ │ │ ├── VariableExtentionKt$toMd5$1.dex │ │ │ │ │ │ ├── VariableExtentionKt$toSha1$1.dex │ │ │ │ │ │ ├── VariableExtentionKt.dex │ │ │ │ │ │ └── ViewExtensionKt.dex │ │ │ │ │ │ ├── preferences │ │ │ │ │ │ ├── LiveLiterals$TokenPreferencesManagerKt.dex │ │ │ │ │ │ ├── TokenPreferencesManager$Companion.dex │ │ │ │ │ │ ├── TokenPreferencesManager$editor$2.dex │ │ │ │ │ │ ├── TokenPreferencesManager$pref$2.dex │ │ │ │ │ │ └── TokenPreferencesManager.dex │ │ │ │ │ │ └── uikit │ │ │ │ │ │ └── compose │ │ │ │ │ │ ├── AvatarImageWithCoilKt$AvatarImageWithCoil$1.dex │ │ │ │ │ │ ├── AvatarImageWithCoilKt.dex │ │ │ │ │ │ ├── ErrorViewKt$ErrorView$2.dex │ │ │ │ │ │ ├── ErrorViewKt.dex │ │ │ │ │ │ ├── LiveLiterals$AvatarImageWithCoilKt.dex │ │ │ │ │ │ ├── LiveLiterals$ErrorViewKt.dex │ │ │ │ │ │ ├── LoadingViewKt$LoadingView$2.dex │ │ │ │ │ │ └── LoadingViewKt.dex │ │ │ │ └── hilt_aggregated_deps │ │ │ │ │ └── _com_shakbari_core_di_RetrofitModule.dex │ │ │ │ └── desugar_graph.bin │ │ └── de0a3723986147583d34524143461113 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ └── classes │ │ │ └── classes.dex │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── shakbari │ │ │ │ └── core │ │ │ │ └── BuildConfig.java │ │ │ └── kapt │ │ │ └── debug │ │ │ ├── com │ │ │ └── shakbari │ │ │ │ └── core │ │ │ │ └── di │ │ │ │ ├── RetrofitModule_ProvideOkHttpClientFactory.java │ │ │ │ ├── RetrofitModule_ProvideRetrofitFactory.java │ │ │ │ └── RetrofitModule_ProvideUtilsFactory.java │ │ │ └── hilt_aggregated_deps │ │ │ └── _com_shakbari_core_di_RetrofitModule.java │ ├── intermediates │ │ ├── aapt_friendly_merged_manifests │ │ │ └── debug │ │ │ │ └── aapt │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output-metadata.json │ │ ├── aar_metadata │ │ │ └── debug │ │ │ │ └── aar-metadata.properties │ │ ├── annotation_processor_list │ │ │ └── debug │ │ │ │ └── annotationProcessors.json │ │ ├── asm_instrumented_project_classes │ │ │ └── debug │ │ │ │ ├── META-INF │ │ │ │ └── core_debug.kotlin_module │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── core │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── base │ │ │ │ │ ├── DataState$Error.class │ │ │ │ │ ├── DataState$Loading.class │ │ │ │ │ ├── DataState$Success.class │ │ │ │ │ ├── DataState.class │ │ │ │ │ └── LiveLiterals$DataStateKt.class │ │ │ │ │ ├── di │ │ │ │ │ ├── LiveLiterals$RetrofitModuleKt.class │ │ │ │ │ ├── RetrofitModule.class │ │ │ │ │ ├── RetrofitModule_ProvideOkHttpClientFactory.class │ │ │ │ │ ├── RetrofitModule_ProvideRetrofitFactory.class │ │ │ │ │ ├── RetrofitModule_ProvideUtilsFactory.class │ │ │ │ │ └── utils │ │ │ │ │ │ ├── LiveLiterals$RetrofitConfigKt.class │ │ │ │ │ │ └── RetrofitConfig.class │ │ │ │ │ ├── preferences │ │ │ │ │ ├── LiveLiterals$TokenPreferencesManagerKt.class │ │ │ │ │ ├── TokenPreferencesManager$Companion.class │ │ │ │ │ ├── TokenPreferencesManager$editor$2.class │ │ │ │ │ ├── TokenPreferencesManager$pref$2.class │ │ │ │ │ └── TokenPreferencesManager.class │ │ │ │ │ └── uikit │ │ │ │ │ └── compose │ │ │ │ │ ├── AvatarImageWithCoilKt$AvatarImageWithCoil$1.class │ │ │ │ │ ├── AvatarImageWithCoilKt.class │ │ │ │ │ ├── ErrorViewKt$ErrorView$2.class │ │ │ │ │ ├── ErrorViewKt.class │ │ │ │ │ ├── LiveLiterals$AvatarImageWithCoilKt.class │ │ │ │ │ ├── LiveLiterals$ErrorViewKt.class │ │ │ │ │ ├── LoadingViewKt$LoadingView$2.class │ │ │ │ │ └── LoadingViewKt.class │ │ │ │ └── hilt_aggregated_deps │ │ │ │ └── _com_shakbari_core_di_RetrofitModule.class │ │ ├── compile_library_classes_jar │ │ │ └── debug │ │ │ │ └── classes.jar │ │ ├── compile_r_class_jar │ │ │ └── debug │ │ │ │ └── R.jar │ │ ├── compile_symbol_list │ │ │ └── debug │ │ │ │ └── R.txt │ │ ├── incremental │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebugAssets │ │ │ │ └── merger.xml │ │ │ └── packageDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ ├── javac │ │ │ └── debug │ │ │ │ └── classes │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── core │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ └── di │ │ │ │ │ ├── RetrofitModule_ProvideOkHttpClientFactory.class │ │ │ │ │ ├── RetrofitModule_ProvideRetrofitFactory.class │ │ │ │ │ └── RetrofitModule_ProvideUtilsFactory.class │ │ │ │ └── hilt_aggregated_deps │ │ │ │ └── _com_shakbari_core_di_RetrofitModule.class │ │ ├── library_java_res │ │ │ └── debug │ │ │ │ └── res.jar │ │ ├── local_only_symbol_list │ │ │ └── debug │ │ │ │ └── R-def.txt │ │ ├── manifest_merge_blame_file │ │ │ └── debug │ │ │ │ └── manifest-merger-blame-debug-report.txt │ │ ├── merged_manifest │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── navigation_json │ │ │ └── debug │ │ │ │ └── navigation.json │ │ ├── packaged_manifests │ │ │ └── debug │ │ │ │ └── output-metadata.json │ │ ├── runtime_library_classes_dir │ │ │ └── debug │ │ │ │ ├── META-INF │ │ │ │ └── core_debug.kotlin_module │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── core │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── base │ │ │ │ │ ├── DataState$Error.class │ │ │ │ │ ├── DataState$Loading.class │ │ │ │ │ ├── DataState$Success.class │ │ │ │ │ ├── DataState.class │ │ │ │ │ └── LiveLiterals$DataStateKt.class │ │ │ │ │ ├── di │ │ │ │ │ ├── LiveLiterals$RetrofitModuleKt.class │ │ │ │ │ ├── RetrofitModule.class │ │ │ │ │ ├── RetrofitModule_ProvideOkHttpClientFactory.class │ │ │ │ │ ├── RetrofitModule_ProvideRetrofitFactory.class │ │ │ │ │ ├── RetrofitModule_ProvideUtilsFactory.class │ │ │ │ │ └── utils │ │ │ │ │ │ ├── LiveLiterals$RetrofitConfigKt.class │ │ │ │ │ │ └── RetrofitConfig.class │ │ │ │ │ ├── preferences │ │ │ │ │ ├── LiveLiterals$TokenPreferencesManagerKt.class │ │ │ │ │ ├── TokenPreferencesManager$Companion.class │ │ │ │ │ ├── TokenPreferencesManager$editor$2.class │ │ │ │ │ ├── TokenPreferencesManager$pref$2.class │ │ │ │ │ └── TokenPreferencesManager.class │ │ │ │ │ └── uikit │ │ │ │ │ └── compose │ │ │ │ │ ├── AvatarImageWithCoilKt$AvatarImageWithCoil$1.class │ │ │ │ │ ├── AvatarImageWithCoilKt.class │ │ │ │ │ ├── ErrorViewKt$ErrorView$2.class │ │ │ │ │ ├── ErrorViewKt.class │ │ │ │ │ ├── LiveLiterals$AvatarImageWithCoilKt.class │ │ │ │ │ ├── LiveLiterals$ErrorViewKt.class │ │ │ │ │ ├── LoadingViewKt$LoadingView$2.class │ │ │ │ │ └── LoadingViewKt.class │ │ │ │ └── hilt_aggregated_deps │ │ │ │ └── _com_shakbari_core_di_RetrofitModule.class │ │ ├── runtime_library_classes_jar │ │ │ └── debug │ │ │ │ └── classes.jar │ │ └── symbol_list_with_package_name │ │ │ └── debug │ │ │ └── package-aware-r.txt │ ├── kotlin │ │ ├── compileDebugKotlin │ │ │ ├── build-history.bin │ │ │ ├── caches-jvm │ │ │ │ ├── inputs │ │ │ │ │ ├── source-to-output.tab │ │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ │ ├── source-to-output.tab.len │ │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ │ ├── source-to-output.tab_i │ │ │ │ │ └── source-to-output.tab_i.len │ │ │ │ ├── jvm │ │ │ │ │ └── kotlin │ │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ │ ├── proto.tab │ │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ │ └── supertypes.tab_i.len │ │ │ │ └── lookups │ │ │ │ │ ├── counters.tab │ │ │ │ │ ├── file-to-id.tab │ │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ │ ├── file-to-id.tab.len │ │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ │ ├── file-to-id.tab_i │ │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ │ ├── id-to-file.tab │ │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ │ ├── id-to-file.tab.len │ │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ │ ├── id-to-file.tab_i │ │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ │ ├── lookups.tab │ │ │ │ │ ├── lookups.tab.keystream │ │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ │ ├── lookups.tab.len │ │ │ │ │ ├── lookups.tab.values.at │ │ │ │ │ ├── lookups.tab_i │ │ │ │ │ └── lookups.tab_i.len │ │ │ └── last-build.bin │ │ └── kaptGenerateStubsDebugKotlin │ │ │ ├── build-history.bin │ │ │ ├── caches-jvm │ │ │ ├── inputs │ │ │ │ ├── source-to-output.tab │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ ├── source-to-output.tab.len │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ ├── source-to-output.tab_i │ │ │ │ └── source-to-output.tab_i.len │ │ │ ├── jvm │ │ │ │ └── kotlin │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ ├── proto.tab │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ └── supertypes.tab_i.len │ │ │ └── lookups │ │ │ │ ├── counters.tab │ │ │ │ ├── file-to-id.tab │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ ├── file-to-id.tab.len │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ ├── file-to-id.tab_i │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ ├── id-to-file.tab │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ ├── id-to-file.tab.len │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ ├── id-to-file.tab_i │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ ├── lookups.tab │ │ │ │ ├── lookups.tab.keystream │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ ├── lookups.tab.len │ │ │ │ ├── lookups.tab.values.at │ │ │ │ ├── lookups.tab_i │ │ │ │ └── lookups.tab_i.len │ │ │ └── last-build.bin │ ├── outputs │ │ └── logs │ │ │ └── manifest-merger-debug-report.txt │ └── tmp │ │ ├── compileDebugJavaWithJavac │ │ └── source-classes-mapping.txt │ │ ├── kapt3 │ │ ├── incApCache │ │ │ └── debug │ │ │ │ ├── ap-classpath-entries.bin │ │ │ │ ├── apt-cache.bin │ │ │ │ ├── classpath-entries.bin │ │ │ │ ├── classpath-structure.bin │ │ │ │ └── java-cache.bin │ │ ├── incrementalData │ │ │ └── debug │ │ │ │ ├── META-INF │ │ │ │ └── core_debug.kotlin_module │ │ │ │ └── com │ │ │ │ └── shakbari │ │ │ │ └── core │ │ │ │ ├── base │ │ │ │ ├── DataState$Error.class │ │ │ │ ├── DataState$Loading.class │ │ │ │ ├── DataState$Success.class │ │ │ │ └── DataState.class │ │ │ │ ├── di │ │ │ │ ├── RetrofitModule.class │ │ │ │ └── utils │ │ │ │ │ └── RetrofitConfig.class │ │ │ │ ├── preferences │ │ │ │ ├── TokenPreferencesManager$Companion.class │ │ │ │ └── TokenPreferencesManager.class │ │ │ │ └── uikit │ │ │ │ └── compose │ │ │ │ ├── AvatarImageWithCoilKt.class │ │ │ │ ├── ErrorViewKt.class │ │ │ │ └── LoadingViewKt.class │ │ └── stubs │ │ │ └── debug │ │ │ ├── com │ │ │ └── shakbari │ │ │ │ └── core │ │ │ │ ├── base │ │ │ │ ├── DataState.java │ │ │ │ └── DataState.kapt_metadata │ │ │ │ ├── di │ │ │ │ ├── RetrofitModule.java │ │ │ │ ├── RetrofitModule.kapt_metadata │ │ │ │ └── utils │ │ │ │ │ ├── RetrofitConfig.java │ │ │ │ │ └── RetrofitConfig.kapt_metadata │ │ │ │ ├── preferences │ │ │ │ ├── TokenPreferencesManager.java │ │ │ │ └── TokenPreferencesManager.kapt_metadata │ │ │ │ └── uikit │ │ │ │ └── compose │ │ │ │ ├── AvatarImageWithCoilKt.java │ │ │ │ ├── AvatarImageWithCoilKt.kapt_metadata │ │ │ │ ├── ErrorViewKt.java │ │ │ │ ├── ErrorViewKt.kapt_metadata │ │ │ │ ├── LoadingViewKt.java │ │ │ │ └── LoadingViewKt.kapt_metadata │ │ │ └── error │ │ │ └── NonExistentClass.java │ │ └── kotlin-classes │ │ └── debug │ │ ├── META-INF │ │ └── core_debug.kotlin_module │ │ └── com │ │ └── shakbari │ │ └── core │ │ ├── base │ │ ├── DataState$Error.class │ │ ├── DataState$Loading.class │ │ ├── DataState$Success.class │ │ ├── DataState.class │ │ └── LiveLiterals$DataStateKt.class │ │ ├── di │ │ ├── LiveLiterals$RetrofitModuleKt.class │ │ ├── RetrofitModule.class │ │ └── utils │ │ │ ├── LiveLiterals$RetrofitConfigKt.class │ │ │ └── RetrofitConfig.class │ │ ├── preferences │ │ ├── LiveLiterals$TokenPreferencesManagerKt.class │ │ ├── TokenPreferencesManager$Companion.class │ │ ├── TokenPreferencesManager$editor$2.class │ │ ├── TokenPreferencesManager$pref$2.class │ │ └── TokenPreferencesManager.class │ │ └── uikit │ │ └── compose │ │ ├── AvatarImageWithCoilKt$AvatarImageWithCoil$1.class │ │ ├── AvatarImageWithCoilKt.class │ │ ├── ErrorViewKt$ErrorView$2.class │ │ ├── ErrorViewKt.class │ │ ├── LiveLiterals$AvatarImageWithCoilKt.class │ │ ├── LiveLiterals$ErrorViewKt.class │ │ ├── LoadingViewKt$LoadingView$2.class │ │ └── LoadingViewKt.class ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── shakbari │ │ └── core │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── shakbari │ │ └── core │ │ ├── base │ │ ├── DataState.kt │ │ └── mvi │ │ │ ├── BaseViewModel.kt │ │ │ ├── UiEffect.kt │ │ │ ├── UiIntent.kt │ │ │ └── UiState.kt │ │ ├── di │ │ ├── RetrofitModule.kt │ │ └── utils │ │ │ └── RetrofitConfig.kt │ │ ├── extention │ │ └── Extention.kt │ │ ├── preferences │ │ └── TokenPreferencesManager.kt │ │ └── uikit │ │ └── compose │ │ ├── AvatarImageWithCoil.kt │ │ ├── ErrorView.kt │ │ └── LoadingView.kt │ └── test │ └── java │ └── com │ └── shakbari │ └── core │ └── ExampleUnitTest.kt ├── feature ├── .gitignore ├── build.gradle ├── details │ ├── .gitignore │ ├── build.gradle │ ├── build │ │ ├── .transforms │ │ │ ├── 466566e5174808ca9a43c9ae0ad7fdff │ │ │ │ └── results.bin │ │ │ ├── 958411269650ea92f582185606e1e3e3 │ │ │ │ ├── results.bin │ │ │ │ └── transformed │ │ │ │ │ ├── debug │ │ │ │ │ └── com │ │ │ │ │ │ └── shakbari │ │ │ │ │ │ └── details │ │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt$lambda-1$1.dex │ │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt.dex │ │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$1$1.dex │ │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$2.dex │ │ │ │ │ │ ├── DetailsScreenKt.dex │ │ │ │ │ │ ├── LiveLiterals$DetailsScreenKt.dex │ │ │ │ │ │ └── navigation │ │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$1.dex │ │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$2.dex │ │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1.dex │ │ │ │ │ │ └── DetailsNavModuleKt.dex │ │ │ │ │ └── desugar_graph.bin │ │ │ ├── ab48d36b89bd2b3487f4e57537d23230 │ │ │ │ ├── results.bin │ │ │ │ └── transformed │ │ │ │ │ ├── debug │ │ │ │ │ └── com │ │ │ │ │ │ └── shakbari │ │ │ │ │ │ └── details │ │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt$lambda-1$1.dex │ │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt.dex │ │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$1$1.dex │ │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$2.dex │ │ │ │ │ │ ├── DetailsScreenKt.dex │ │ │ │ │ │ ├── LiveLiterals$DetailsScreenKt.dex │ │ │ │ │ │ └── navigation │ │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$1.dex │ │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$2.dex │ │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1.dex │ │ │ │ │ │ └── DetailsNavModuleKt.dex │ │ │ │ │ └── desugar_graph.bin │ │ │ ├── c7fcc85d32dd90892d5c05deba943454 │ │ │ │ ├── results.bin │ │ │ │ └── transformed │ │ │ │ │ ├── debug │ │ │ │ │ └── com │ │ │ │ │ │ └── shakbari │ │ │ │ │ │ └── details │ │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt$lambda-1$1.dex │ │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt.dex │ │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$1$1.dex │ │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$2.dex │ │ │ │ │ │ ├── DetailsScreenKt.dex │ │ │ │ │ │ ├── LiveLiterals$DetailsScreenKt.dex │ │ │ │ │ │ └── navigation │ │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$1.dex │ │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$2.dex │ │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1.dex │ │ │ │ │ │ └── DetailsNavModuleKt.dex │ │ │ │ │ └── desugar_graph.bin │ │ │ ├── eb5ec05aa07a73065ba4ef7a7e97adc7 │ │ │ │ └── results.bin │ │ │ ├── f2a5c6f83433aede013d2de1ec53ccd0 │ │ │ │ └── results.bin │ │ │ └── fa61c4f4a35e70d46c7262b8cc87305c │ │ │ │ ├── results.bin │ │ │ │ └── transformed │ │ │ │ └── classes │ │ │ │ └── classes.dex │ │ ├── generated │ │ │ └── source │ │ │ │ └── buildConfig │ │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── shakbari │ │ │ │ └── details │ │ │ │ └── BuildConfig.java │ │ ├── intermediates │ │ │ ├── aapt_friendly_merged_manifests │ │ │ │ └── debug │ │ │ │ │ └── aapt │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── output-metadata.json │ │ │ ├── aar_metadata │ │ │ │ └── debug │ │ │ │ │ └── aar-metadata.properties │ │ │ ├── annotation_processor_list │ │ │ │ └── debug │ │ │ │ │ └── annotationProcessors.json │ │ │ ├── asm_instrumented_project_classes │ │ │ │ └── debug │ │ │ │ │ ├── META-INF │ │ │ │ │ └── details_debug.kotlin_module │ │ │ │ │ └── com │ │ │ │ │ └── shakbari │ │ │ │ │ └── details │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt$lambda-1$1.class │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt.class │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$1$1.class │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$2.class │ │ │ │ │ ├── DetailsScreenKt.class │ │ │ │ │ ├── LiveLiterals$DetailsScreenKt.class │ │ │ │ │ └── navigation │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$1.class │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$2.class │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1.class │ │ │ │ │ └── DetailsNavModuleKt.class │ │ │ ├── compile_library_classes_jar │ │ │ │ └── debug │ │ │ │ │ └── classes.jar │ │ │ ├── compile_r_class_jar │ │ │ │ └── debug │ │ │ │ │ └── R.jar │ │ │ ├── compile_symbol_list │ │ │ │ └── debug │ │ │ │ │ └── R.txt │ │ │ ├── incremental │ │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeDebugShaders │ │ │ │ │ └── merger.xml │ │ │ │ ├── packageDebugAssets │ │ │ │ │ └── merger.xml │ │ │ │ └── packageDebugResources │ │ │ │ │ ├── compile-file-map.properties │ │ │ │ │ └── merger.xml │ │ │ ├── javac │ │ │ │ └── debug │ │ │ │ │ └── classes │ │ │ │ │ └── com │ │ │ │ │ └── shakbari │ │ │ │ │ └── details │ │ │ │ │ └── BuildConfig.class │ │ │ ├── library_java_res │ │ │ │ └── debug │ │ │ │ │ └── res.jar │ │ │ ├── local_only_symbol_list │ │ │ │ └── debug │ │ │ │ │ └── R-def.txt │ │ │ ├── manifest_merge_blame_file │ │ │ │ └── debug │ │ │ │ │ └── manifest-merger-blame-debug-report.txt │ │ │ ├── merged_manifest │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── navigation_json │ │ │ │ └── debug │ │ │ │ │ └── navigation.json │ │ │ ├── packaged_manifests │ │ │ │ └── debug │ │ │ │ │ └── output-metadata.json │ │ │ ├── runtime_library_classes_dir │ │ │ │ └── debug │ │ │ │ │ ├── META-INF │ │ │ │ │ └── details_debug.kotlin_module │ │ │ │ │ └── com │ │ │ │ │ └── shakbari │ │ │ │ │ └── details │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt$lambda-1$1.class │ │ │ │ │ ├── ComposableSingletons$DetailsScreenKt.class │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$1$1.class │ │ │ │ │ ├── DetailsScreenKt$DetailScreen$2.class │ │ │ │ │ ├── DetailsScreenKt.class │ │ │ │ │ ├── LiveLiterals$DetailsScreenKt.class │ │ │ │ │ └── navigation │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$1.class │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$2.class │ │ │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1.class │ │ │ │ │ └── DetailsNavModuleKt.class │ │ │ ├── runtime_library_classes_jar │ │ │ │ └── debug │ │ │ │ │ └── classes.jar │ │ │ └── symbol_list_with_package_name │ │ │ │ └── debug │ │ │ │ └── package-aware-r.txt │ │ ├── kotlin │ │ │ ├── compileDebugKotlin │ │ │ │ ├── build-history.bin │ │ │ │ ├── caches-jvm │ │ │ │ │ ├── inputs │ │ │ │ │ │ ├── source-to-output.tab │ │ │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ │ │ ├── source-to-output.tab.len │ │ │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ │ │ ├── source-to-output.tab_i │ │ │ │ │ │ └── source-to-output.tab_i.len │ │ │ │ │ ├── jvm │ │ │ │ │ │ └── kotlin │ │ │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ │ │ ├── proto.tab │ │ │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ │ │ └── source-to-classes.tab_i.len │ │ │ │ │ └── lookups │ │ │ │ │ │ ├── counters.tab │ │ │ │ │ │ ├── file-to-id.tab │ │ │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ │ │ ├── file-to-id.tab.len │ │ │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ │ │ ├── file-to-id.tab_i │ │ │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ │ │ ├── id-to-file.tab │ │ │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ │ │ ├── id-to-file.tab.len │ │ │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ │ │ ├── id-to-file.tab_i │ │ │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ │ │ ├── lookups.tab │ │ │ │ │ │ ├── lookups.tab.keystream │ │ │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ │ │ ├── lookups.tab.len │ │ │ │ │ │ ├── lookups.tab.values.at │ │ │ │ │ │ ├── lookups.tab_i │ │ │ │ │ │ └── lookups.tab_i.len │ │ │ │ └── last-build.bin │ │ │ └── kaptGenerateStubsDebugKotlin │ │ │ │ ├── build-history.bin │ │ │ │ ├── caches-jvm │ │ │ │ ├── inputs │ │ │ │ │ ├── source-to-output.tab │ │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ │ ├── source-to-output.tab.len │ │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ │ ├── source-to-output.tab_i │ │ │ │ │ └── source-to-output.tab_i.len │ │ │ │ ├── jvm │ │ │ │ │ └── kotlin │ │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ │ ├── proto.tab │ │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ │ └── source-to-classes.tab_i.len │ │ │ │ └── lookups │ │ │ │ │ ├── counters.tab │ │ │ │ │ ├── file-to-id.tab │ │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ │ ├── file-to-id.tab.len │ │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ │ ├── file-to-id.tab_i │ │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ │ ├── id-to-file.tab │ │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ │ ├── id-to-file.tab.len │ │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ │ ├── id-to-file.tab_i │ │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ │ ├── lookups.tab │ │ │ │ │ ├── lookups.tab.keystream │ │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ │ ├── lookups.tab.len │ │ │ │ │ ├── lookups.tab.values.at │ │ │ │ │ ├── lookups.tab_i │ │ │ │ │ └── lookups.tab_i.len │ │ │ │ └── last-build.bin │ │ ├── outputs │ │ │ └── logs │ │ │ │ └── manifest-merger-debug-report.txt │ │ └── tmp │ │ │ ├── compileDebugJavaWithJavac │ │ │ └── source-classes-mapping.txt │ │ │ ├── kapt3 │ │ │ ├── incApCache │ │ │ │ └── debug │ │ │ │ │ ├── ap-classpath-entries.bin │ │ │ │ │ ├── apt-cache.bin │ │ │ │ │ ├── classpath-entries.bin │ │ │ │ │ ├── classpath-structure.bin │ │ │ │ │ └── java-cache.bin │ │ │ ├── incrementalData │ │ │ │ └── debug │ │ │ │ │ ├── META-INF │ │ │ │ │ └── details_debug.kotlin_module │ │ │ │ │ └── com │ │ │ │ │ └── shakbari │ │ │ │ │ └── details │ │ │ │ │ ├── DetailsScreenKt.class │ │ │ │ │ └── navigation │ │ │ │ │ └── DetailsNavModuleKt.class │ │ │ └── stubs │ │ │ │ └── debug │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── details │ │ │ │ │ ├── DetailsScreenKt.java │ │ │ │ │ ├── DetailsScreenKt.kapt_metadata │ │ │ │ │ └── navigation │ │ │ │ │ ├── DetailsNavModuleKt.java │ │ │ │ │ └── DetailsNavModuleKt.kapt_metadata │ │ │ │ └── error │ │ │ │ └── NonExistentClass.java │ │ │ └── kotlin-classes │ │ │ └── debug │ │ │ ├── META-INF │ │ │ └── details_debug.kotlin_module │ │ │ └── com │ │ │ └── shakbari │ │ │ └── details │ │ │ ├── ComposableSingletons$DetailsScreenKt$lambda-1$1.class │ │ │ ├── ComposableSingletons$DetailsScreenKt.class │ │ │ ├── DetailsScreenKt$DetailScreen$1$1.class │ │ │ ├── DetailsScreenKt$DetailScreen$2.class │ │ │ ├── DetailsScreenKt.class │ │ │ ├── LiveLiterals$DetailsScreenKt.class │ │ │ └── navigation │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$1.class │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1$createNavComposable$1$2.class │ │ │ ├── DetailsNavModuleKt$detailScreenNavModule$1.class │ │ │ └── DetailsNavModuleKt.class │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── shakbari │ │ │ └── details │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── shakbari │ │ │ └── details │ │ │ ├── DetailsScreen.kt │ │ │ └── navigation │ │ │ └── DetailsNavModule.kt │ │ └── test │ │ └── java │ │ └── com │ │ └── shakbari │ │ └── details │ │ └── ExampleUnitTest.kt └── home │ ├── .gitignore │ ├── build.gradle │ ├── build │ ├── .transforms │ │ ├── 42f81c6311666ae1934deba4f3bfa1ec │ │ │ └── results.bin │ │ ├── 4ecc72d5ae039a35a60bdd80d595b78a │ │ │ └── results.bin │ │ ├── 67721a80cc13d484cb434369fda357b4 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ ├── debug │ │ │ │ ├── com │ │ │ │ │ └── shakbari │ │ │ │ │ │ └── home │ │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── HomeApiHelper.dex │ │ │ │ │ │ │ ├── HomeApiHelperImpl.dex │ │ │ │ │ │ │ ├── HomeApiHelperImpl_Factory.dex │ │ │ │ │ │ │ ├── HomeRetrofitApiService.dex │ │ │ │ │ │ │ └── LiveLiterals$HomeApiHelperImplKt.dex │ │ │ │ │ │ ├── di │ │ │ │ │ │ │ ├── HomeFeatureModule.dex │ │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiHelperFactory.dex │ │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiServiceFactory.dex │ │ │ │ │ │ │ ├── HomeFeatureModule_ProvideUserRepositoryFactory.dex │ │ │ │ │ │ │ └── LiveLiterals$HomeFeatureModuleKt.dex │ │ │ │ │ │ └── navigation │ │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1$createNavComposable$1$1.dex │ │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1.dex │ │ │ │ │ │ │ └── HomeNavModuleKt.dex │ │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── LiveLiterals$UserKt.dex │ │ │ │ │ │ │ └── User.dex │ │ │ │ │ │ ├── repository │ │ │ │ │ │ │ ├── LiveLiterals$UserRepositoryImplKt.dex │ │ │ │ │ │ │ ├── UserRepository.dex │ │ │ │ │ │ │ ├── UserRepositoryImpl$getUsers$2.dex │ │ │ │ │ │ │ ├── UserRepositoryImpl.dex │ │ │ │ │ │ │ └── UserRepositoryImpl_Factory.dex │ │ │ │ │ │ └── usecase │ │ │ │ │ │ │ ├── LiveLiterals$UserUseCaseKt.dex │ │ │ │ │ │ │ ├── UserUseCase.dex │ │ │ │ │ │ │ └── UserUseCase_Factory.dex │ │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-1$1.dex │ │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-2$1.dex │ │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt.dex │ │ │ │ │ │ ├── HomeScreenKt$HomeScreen$2.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$1$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$1$2.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$invoke$$inlined$items$default$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$invoke$$inlined$items$default$2.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$2.dex │ │ │ │ │ │ ├── HomeScreenKt.dex │ │ │ │ │ │ └── LiveLiterals$HomeScreenKt.dex │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ ├── LiveLiterals$UsersViewModelKt.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1$1.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1$invokeSuspend$$inlined$collect$1$1.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1$invokeSuspend$$inlined$collect$1.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1.dex │ │ │ │ │ │ ├── UsersViewModel.dex │ │ │ │ │ │ ├── UsersViewModel_Factory.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules$BindsModule.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules$KeyModule.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules_KeyModule_ProvideFactory$InstanceHolder.dex │ │ │ │ │ │ └── UsersViewModel_HiltModules_KeyModule_ProvideFactory.dex │ │ │ │ └── hilt_aggregated_deps │ │ │ │ │ ├── _com_shakbari_home_common_di_HomeFeatureModule.dex │ │ │ │ │ ├── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_BindsModule.dex │ │ │ │ │ └── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_KeyModule.dex │ │ │ │ └── desugar_graph.bin │ │ ├── 93efbff8b5781150b2ea17744006fac0 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ ├── debug │ │ │ │ ├── com │ │ │ │ │ └── shakbari │ │ │ │ │ │ └── home │ │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── HomeApiHelper.dex │ │ │ │ │ │ │ ├── HomeApiHelperImpl.dex │ │ │ │ │ │ │ ├── HomeApiHelperImpl_Factory.dex │ │ │ │ │ │ │ ├── HomeRetrofitApiService.dex │ │ │ │ │ │ │ └── LiveLiterals$HomeApiHelperImplKt.dex │ │ │ │ │ │ ├── di │ │ │ │ │ │ │ ├── HomeFeatureModule.dex │ │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiHelperFactory.dex │ │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiServiceFactory.dex │ │ │ │ │ │ │ ├── HomeFeatureModule_ProvideUserRepositoryFactory.dex │ │ │ │ │ │ │ └── LiveLiterals$HomeFeatureModuleKt.dex │ │ │ │ │ │ └── navigation │ │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1$createNavComposable$1$1.dex │ │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1.dex │ │ │ │ │ │ │ └── HomeNavModuleKt.dex │ │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── LiveLiterals$UserKt.dex │ │ │ │ │ │ │ └── User.dex │ │ │ │ │ │ ├── repository │ │ │ │ │ │ │ ├── LiveLiterals$UserRepositoryImplKt.dex │ │ │ │ │ │ │ ├── UserRepository.dex │ │ │ │ │ │ │ ├── UserRepositoryImpl$getUsers$2.dex │ │ │ │ │ │ │ ├── UserRepositoryImpl.dex │ │ │ │ │ │ │ └── UserRepositoryImpl_Factory.dex │ │ │ │ │ │ └── usecase │ │ │ │ │ │ │ ├── LiveLiterals$UserUseCaseKt.dex │ │ │ │ │ │ │ ├── UserUseCase.dex │ │ │ │ │ │ │ └── UserUseCase_Factory.dex │ │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-1$1.dex │ │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-2$1.dex │ │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt.dex │ │ │ │ │ │ ├── HomeScreenKt$HomeScreen$2.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$1$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$1$2.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$invoke$$inlined$items$default$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$invoke$$inlined$items$default$2.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$2.dex │ │ │ │ │ │ ├── HomeScreenKt.dex │ │ │ │ │ │ └── LiveLiterals$HomeScreenKt.dex │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ ├── LiveLiterals$UsersViewModelKt.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1$1.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1$invokeSuspend$$inlined$collect$1$1.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1$invokeSuspend$$inlined$collect$1.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1.dex │ │ │ │ │ │ ├── UsersViewModel.dex │ │ │ │ │ │ ├── UsersViewModel_Factory.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules$BindsModule.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules$KeyModule.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules_KeyModule_ProvideFactory$InstanceHolder.dex │ │ │ │ │ │ └── UsersViewModel_HiltModules_KeyModule_ProvideFactory.dex │ │ │ │ └── hilt_aggregated_deps │ │ │ │ │ ├── _com_shakbari_home_common_di_HomeFeatureModule.dex │ │ │ │ │ ├── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_BindsModule.dex │ │ │ │ │ └── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_KeyModule.dex │ │ │ │ └── desugar_graph.bin │ │ ├── 983e687b124501d0986e8819be80e308 │ │ │ └── results.bin │ │ ├── 9e7a69524cdc53c1f37951d4ac35f9b5 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ ├── debug │ │ │ │ ├── com │ │ │ │ │ └── shakbari │ │ │ │ │ │ └── home │ │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── HomeApiHelper.dex │ │ │ │ │ │ │ ├── HomeApiHelperImpl.dex │ │ │ │ │ │ │ ├── HomeApiHelperImpl_Factory.dex │ │ │ │ │ │ │ ├── HomeRetrofitApiService.dex │ │ │ │ │ │ │ └── LiveLiterals$HomeApiHelperImplKt.dex │ │ │ │ │ │ ├── di │ │ │ │ │ │ │ ├── HomeFeatureModule.dex │ │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiHelperFactory.dex │ │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiServiceFactory.dex │ │ │ │ │ │ │ ├── HomeFeatureModule_ProvideUserRepositoryFactory.dex │ │ │ │ │ │ │ └── LiveLiterals$HomeFeatureModuleKt.dex │ │ │ │ │ │ └── navigation │ │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1$createNavComposable$1$1.dex │ │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1.dex │ │ │ │ │ │ │ └── HomeNavModuleKt.dex │ │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── LiveLiterals$UserKt.dex │ │ │ │ │ │ │ └── User.dex │ │ │ │ │ │ ├── repository │ │ │ │ │ │ │ ├── LiveLiterals$UserRepositoryImplKt.dex │ │ │ │ │ │ │ ├── UserRepository.dex │ │ │ │ │ │ │ ├── UserRepositoryImpl$getUsers$2.dex │ │ │ │ │ │ │ ├── UserRepositoryImpl.dex │ │ │ │ │ │ │ └── UserRepositoryImpl_Factory.dex │ │ │ │ │ │ └── usecase │ │ │ │ │ │ │ ├── LiveLiterals$UserUseCaseKt.dex │ │ │ │ │ │ │ ├── UserUseCase.dex │ │ │ │ │ │ │ └── UserUseCase_Factory.dex │ │ │ │ │ │ └── presentation │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-1$1.dex │ │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-2$1.dex │ │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt.dex │ │ │ │ │ │ ├── HomeScreenKt$HomeScreen$2.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$1$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$1$2.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$invoke$$inlined$items$default$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1$invoke$$inlined$items$default$2.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$1.dex │ │ │ │ │ │ ├── HomeScreenKt$LoadHomeScreenView$2.dex │ │ │ │ │ │ ├── HomeScreenKt.dex │ │ │ │ │ │ └── LiveLiterals$HomeScreenKt.dex │ │ │ │ │ │ └── viewmodel │ │ │ │ │ │ ├── LiveLiterals$UsersViewModelKt.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1$1.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1$invokeSuspend$$inlined$collect$1$1.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1$invokeSuspend$$inlined$collect$1.dex │ │ │ │ │ │ ├── UsersViewModel$getUsers$1.dex │ │ │ │ │ │ ├── UsersViewModel.dex │ │ │ │ │ │ ├── UsersViewModel_Factory.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules$BindsModule.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules$KeyModule.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules.dex │ │ │ │ │ │ ├── UsersViewModel_HiltModules_KeyModule_ProvideFactory$InstanceHolder.dex │ │ │ │ │ │ └── UsersViewModel_HiltModules_KeyModule_ProvideFactory.dex │ │ │ │ └── hilt_aggregated_deps │ │ │ │ │ ├── _com_shakbari_home_common_di_HomeFeatureModule.dex │ │ │ │ │ ├── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_BindsModule.dex │ │ │ │ │ └── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_KeyModule.dex │ │ │ │ └── desugar_graph.bin │ │ └── a2800593796a5ef77a3cb271b32136f4 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ └── classes │ │ │ └── classes.dex │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── shakbari │ │ │ │ └── home │ │ │ │ └── BuildConfig.java │ │ │ └── kapt │ │ │ └── debug │ │ │ ├── com │ │ │ └── shakbari │ │ │ │ └── home │ │ │ │ ├── common │ │ │ │ ├── api │ │ │ │ │ └── HomeApiHelperImpl_Factory.java │ │ │ │ └── di │ │ │ │ │ ├── HomeFeatureModule_ProvideApiHelperFactory.java │ │ │ │ │ ├── HomeFeatureModule_ProvideApiServiceFactory.java │ │ │ │ │ └── HomeFeatureModule_ProvideUserRepositoryFactory.java │ │ │ │ ├── domain │ │ │ │ ├── repository │ │ │ │ │ └── UserRepositoryImpl_Factory.java │ │ │ │ └── usecase │ │ │ │ │ └── UserUseCase_Factory.java │ │ │ │ └── presentation │ │ │ │ └── viewmodel │ │ │ │ ├── UsersViewModel_Factory.java │ │ │ │ ├── UsersViewModel_HiltModules.java │ │ │ │ └── UsersViewModel_HiltModules_KeyModule_ProvideFactory.java │ │ │ └── hilt_aggregated_deps │ │ │ ├── _com_shakbari_home_common_di_HomeFeatureModule.java │ │ │ ├── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_BindsModule.java │ │ │ └── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_KeyModule.java │ ├── intermediates │ │ ├── aapt_friendly_merged_manifests │ │ │ └── debug │ │ │ │ └── aapt │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output-metadata.json │ │ ├── aar_metadata │ │ │ └── debug │ │ │ │ └── aar-metadata.properties │ │ ├── annotation_processor_list │ │ │ └── debug │ │ │ │ └── annotationProcessors.json │ │ ├── asm_instrumented_project_classes │ │ │ └── debug │ │ │ │ ├── META-INF │ │ │ │ └── home_debug.kotlin_module │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── home │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── common │ │ │ │ │ ├── api │ │ │ │ │ │ ├── HomeApiHelper.class │ │ │ │ │ │ ├── HomeApiHelperImpl.class │ │ │ │ │ │ ├── HomeApiHelperImpl_Factory.class │ │ │ │ │ │ ├── HomeRetrofitApiService.class │ │ │ │ │ │ └── LiveLiterals$HomeApiHelperImplKt.class │ │ │ │ │ ├── di │ │ │ │ │ │ ├── HomeFeatureModule.class │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiHelperFactory.class │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiServiceFactory.class │ │ │ │ │ │ ├── HomeFeatureModule_ProvideUserRepositoryFactory.class │ │ │ │ │ │ └── LiveLiterals$HomeFeatureModuleKt.class │ │ │ │ │ └── navigation │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1$createNavComposable$1$1.class │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1.class │ │ │ │ │ │ └── HomeNavModuleKt.class │ │ │ │ │ ├── domain │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── LiveLiterals$UserKt.class │ │ │ │ │ │ └── User.class │ │ │ │ │ ├── repository │ │ │ │ │ │ ├── LiveLiterals$UserRepositoryImplKt.class │ │ │ │ │ │ ├── UserRepository.class │ │ │ │ │ │ ├── UserRepositoryImpl.class │ │ │ │ │ │ └── UserRepositoryImpl_Factory.class │ │ │ │ │ └── usecase │ │ │ │ │ │ ├── LiveLiterals$UserUseCaseKt.class │ │ │ │ │ │ ├── UserUseCase.class │ │ │ │ │ │ └── UserUseCase_Factory.class │ │ │ │ │ └── presentation │ │ │ │ │ ├── ui │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-1$1.class │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-2$1.class │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt.class │ │ │ │ │ ├── HomeScreenKt.class │ │ │ │ │ └── LiveLiterals$HomeScreenKt.class │ │ │ │ │ └── viewmodel │ │ │ │ │ ├── LiveLiterals$UsersViewModelKt.class │ │ │ │ │ ├── UsersViewModel.class │ │ │ │ │ ├── UsersViewModel_Factory.class │ │ │ │ │ ├── UsersViewModel_HiltModules$BindsModule.class │ │ │ │ │ ├── UsersViewModel_HiltModules$KeyModule.class │ │ │ │ │ ├── UsersViewModel_HiltModules.class │ │ │ │ │ ├── UsersViewModel_HiltModules_KeyModule_ProvideFactory$InstanceHolder.class │ │ │ │ │ └── UsersViewModel_HiltModules_KeyModule_ProvideFactory.class │ │ │ │ └── hilt_aggregated_deps │ │ │ │ ├── _com_shakbari_home_common_di_HomeFeatureModule.class │ │ │ │ ├── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_BindsModule.class │ │ │ │ └── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_KeyModule.class │ │ ├── compile_library_classes_jar │ │ │ └── debug │ │ │ │ └── classes.jar │ │ ├── compile_r_class_jar │ │ │ └── debug │ │ │ │ └── R.jar │ │ ├── compile_symbol_list │ │ │ └── debug │ │ │ │ └── R.txt │ │ ├── compiled_local_resources │ │ │ └── debug │ │ │ │ └── out │ │ │ │ └── drawable_ic_android_black_24dp.xml.flat │ │ ├── incremental │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebugAssets │ │ │ │ └── merger.xml │ │ │ └── packageDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ ├── javac │ │ │ └── debug │ │ │ │ └── classes │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── home │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── common │ │ │ │ │ ├── api │ │ │ │ │ │ └── HomeApiHelperImpl_Factory.class │ │ │ │ │ └── di │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiHelperFactory.class │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiServiceFactory.class │ │ │ │ │ │ └── HomeFeatureModule_ProvideUserRepositoryFactory.class │ │ │ │ │ ├── domain │ │ │ │ │ ├── repository │ │ │ │ │ │ └── UserRepositoryImpl_Factory.class │ │ │ │ │ └── usecase │ │ │ │ │ │ └── UserUseCase_Factory.class │ │ │ │ │ └── presentation │ │ │ │ │ └── viewmodel │ │ │ │ │ ├── UsersViewModel_Factory.class │ │ │ │ │ ├── UsersViewModel_HiltModules$BindsModule.class │ │ │ │ │ ├── UsersViewModel_HiltModules$KeyModule.class │ │ │ │ │ ├── UsersViewModel_HiltModules.class │ │ │ │ │ ├── UsersViewModel_HiltModules_KeyModule_ProvideFactory$InstanceHolder.class │ │ │ │ │ └── UsersViewModel_HiltModules_KeyModule_ProvideFactory.class │ │ │ │ └── hilt_aggregated_deps │ │ │ │ ├── _com_shakbari_home_common_di_HomeFeatureModule.class │ │ │ │ ├── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_BindsModule.class │ │ │ │ └── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_KeyModule.class │ │ ├── library_java_res │ │ │ └── debug │ │ │ │ └── res.jar │ │ ├── local_only_symbol_list │ │ │ └── debug │ │ │ │ └── R-def.txt │ │ ├── manifest_merge_blame_file │ │ │ └── debug │ │ │ │ └── manifest-merger-blame-debug-report.txt │ │ ├── merged_manifest │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── navigation_json │ │ │ └── debug │ │ │ │ └── navigation.json │ │ ├── packaged_manifests │ │ │ └── debug │ │ │ │ └── output-metadata.json │ │ ├── packaged_res │ │ │ └── debug │ │ │ │ └── drawable │ │ │ │ └── ic_android_black_24dp.xml │ │ ├── runtime_library_classes_dir │ │ │ └── debug │ │ │ │ ├── META-INF │ │ │ │ └── home_debug.kotlin_module │ │ │ │ ├── com │ │ │ │ └── shakbari │ │ │ │ │ └── home │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── common │ │ │ │ │ ├── api │ │ │ │ │ │ ├── HomeApiHelper.class │ │ │ │ │ │ ├── HomeApiHelperImpl.class │ │ │ │ │ │ ├── HomeApiHelperImpl_Factory.class │ │ │ │ │ │ ├── HomeRetrofitApiService.class │ │ │ │ │ │ └── LiveLiterals$HomeApiHelperImplKt.class │ │ │ │ │ ├── di │ │ │ │ │ │ ├── HomeFeatureModule.class │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiHelperFactory.class │ │ │ │ │ │ ├── HomeFeatureModule_ProvideApiServiceFactory.class │ │ │ │ │ │ ├── HomeFeatureModule_ProvideUserRepositoryFactory.class │ │ │ │ │ │ └── LiveLiterals$HomeFeatureModuleKt.class │ │ │ │ │ └── navigation │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1$createNavComposable$1$1.class │ │ │ │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1.class │ │ │ │ │ │ └── HomeNavModuleKt.class │ │ │ │ │ ├── domain │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── LiveLiterals$UserKt.class │ │ │ │ │ │ └── User.class │ │ │ │ │ ├── repository │ │ │ │ │ │ ├── LiveLiterals$UserRepositoryImplKt.class │ │ │ │ │ │ ├── UserRepository.class │ │ │ │ │ │ ├── UserRepositoryImpl.class │ │ │ │ │ │ └── UserRepositoryImpl_Factory.class │ │ │ │ │ └── usecase │ │ │ │ │ │ ├── LiveLiterals$UserUseCaseKt.class │ │ │ │ │ │ ├── UserUseCase.class │ │ │ │ │ │ └── UserUseCase_Factory.class │ │ │ │ │ └── presentation │ │ │ │ │ ├── ui │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-1$1.class │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt$lambda-2$1.class │ │ │ │ │ ├── ComposableSingletons$HomeScreenKt.class │ │ │ │ │ ├── HomeScreenKt.class │ │ │ │ │ └── LiveLiterals$HomeScreenKt.class │ │ │ │ │ └── viewmodel │ │ │ │ │ ├── LiveLiterals$UsersViewModelKt.class │ │ │ │ │ ├── UsersViewModel.class │ │ │ │ │ ├── UsersViewModel_Factory.class │ │ │ │ │ ├── UsersViewModel_HiltModules$BindsModule.class │ │ │ │ │ ├── UsersViewModel_HiltModules$KeyModule.class │ │ │ │ │ ├── UsersViewModel_HiltModules.class │ │ │ │ │ ├── UsersViewModel_HiltModules_KeyModule_ProvideFactory$InstanceHolder.class │ │ │ │ │ └── UsersViewModel_HiltModules_KeyModule_ProvideFactory.class │ │ │ │ └── hilt_aggregated_deps │ │ │ │ ├── _com_shakbari_home_common_di_HomeFeatureModule.class │ │ │ │ ├── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_BindsModule.class │ │ │ │ └── _com_shakbari_home_presentation_viewmodel_UsersViewModel_HiltModules_KeyModule.class │ │ ├── runtime_library_classes_jar │ │ │ └── debug │ │ │ │ └── classes.jar │ │ └── symbol_list_with_package_name │ │ │ └── debug │ │ │ └── package-aware-r.txt │ ├── kotlin │ │ ├── compileDebugKotlin │ │ │ ├── build-history.bin │ │ │ ├── caches-jvm │ │ │ │ ├── inputs │ │ │ │ │ ├── source-to-output.tab │ │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ │ ├── source-to-output.tab.len │ │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ │ ├── source-to-output.tab_i │ │ │ │ │ └── source-to-output.tab_i.len │ │ │ │ ├── jvm │ │ │ │ │ └── kotlin │ │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ │ ├── proto.tab │ │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ │ └── supertypes.tab_i.len │ │ │ │ └── lookups │ │ │ │ │ ├── counters.tab │ │ │ │ │ ├── file-to-id.tab │ │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ │ ├── file-to-id.tab.len │ │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ │ ├── file-to-id.tab_i │ │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ │ ├── id-to-file.tab │ │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ │ ├── id-to-file.tab.len │ │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ │ ├── id-to-file.tab_i │ │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ │ ├── lookups.tab │ │ │ │ │ ├── lookups.tab.keystream │ │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ │ ├── lookups.tab.len │ │ │ │ │ ├── lookups.tab.values.at │ │ │ │ │ ├── lookups.tab_i │ │ │ │ │ └── lookups.tab_i.len │ │ │ └── last-build.bin │ │ └── kaptGenerateStubsDebugKotlin │ │ │ ├── build-history.bin │ │ │ ├── caches-jvm │ │ │ ├── inputs │ │ │ │ ├── source-to-output.tab │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ ├── source-to-output.tab.len │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ ├── source-to-output.tab_i │ │ │ │ └── source-to-output.tab_i.len │ │ │ ├── jvm │ │ │ │ └── kotlin │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ ├── proto.tab │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ └── supertypes.tab_i.len │ │ │ └── lookups │ │ │ │ ├── counters.tab │ │ │ │ ├── file-to-id.tab │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ ├── file-to-id.tab.len │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ ├── file-to-id.tab_i │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ ├── id-to-file.tab │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ ├── id-to-file.tab.len │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ ├── id-to-file.tab_i │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ ├── lookups.tab │ │ │ │ ├── lookups.tab.keystream │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ ├── lookups.tab.len │ │ │ │ ├── lookups.tab.values.at │ │ │ │ ├── lookups.tab_i │ │ │ │ └── lookups.tab_i.len │ │ │ └── last-build.bin │ ├── outputs │ │ └── logs │ │ │ └── manifest-merger-debug-report.txt │ └── tmp │ │ ├── compileDebugJavaWithJavac │ │ └── source-classes-mapping.txt │ │ ├── kapt3 │ │ ├── incApCache │ │ │ └── debug │ │ │ │ ├── ap-classpath-entries.bin │ │ │ │ ├── apt-cache.bin │ │ │ │ ├── classpath-entries.bin │ │ │ │ ├── classpath-structure.bin │ │ │ │ └── java-cache.bin │ │ ├── incrementalData │ │ │ └── debug │ │ │ │ ├── META-INF │ │ │ │ └── home_debug.kotlin_module │ │ │ │ └── com │ │ │ │ └── shakbari │ │ │ │ └── home │ │ │ │ ├── common │ │ │ │ ├── api │ │ │ │ │ ├── HomeApiHelper.class │ │ │ │ │ ├── HomeApiHelperImpl.class │ │ │ │ │ └── HomeRetrofitApiService.class │ │ │ │ ├── di │ │ │ │ │ └── HomeFeatureModule.class │ │ │ │ └── navigation │ │ │ │ │ └── HomeNavModuleKt.class │ │ │ │ ├── domain │ │ │ │ ├── entity │ │ │ │ │ └── User.class │ │ │ │ ├── repository │ │ │ │ │ ├── UserRepository.class │ │ │ │ │ └── UserRepositoryImpl.class │ │ │ │ └── usecase │ │ │ │ │ └── UserUseCase.class │ │ │ │ └── presentation │ │ │ │ ├── ui │ │ │ │ └── HomeScreenKt.class │ │ │ │ └── viewmodel │ │ │ │ └── UsersViewModel.class │ │ └── stubs │ │ │ └── debug │ │ │ ├── com │ │ │ └── shakbari │ │ │ │ └── home │ │ │ │ ├── common │ │ │ │ ├── api │ │ │ │ │ ├── HomeApiHelper.java │ │ │ │ │ ├── HomeApiHelper.kapt_metadata │ │ │ │ │ ├── HomeApiHelperImpl.java │ │ │ │ │ ├── HomeApiHelperImpl.kapt_metadata │ │ │ │ │ ├── HomeRetrofitApiService.java │ │ │ │ │ └── HomeRetrofitApiService.kapt_metadata │ │ │ │ ├── di │ │ │ │ │ ├── HomeFeatureModule.java │ │ │ │ │ └── HomeFeatureModule.kapt_metadata │ │ │ │ └── navigation │ │ │ │ │ ├── HomeNavModuleKt.java │ │ │ │ │ └── HomeNavModuleKt.kapt_metadata │ │ │ │ ├── domain │ │ │ │ ├── entity │ │ │ │ │ ├── User.java │ │ │ │ │ └── User.kapt_metadata │ │ │ │ ├── repository │ │ │ │ │ ├── UserRepository.java │ │ │ │ │ ├── UserRepository.kapt_metadata │ │ │ │ │ ├── UserRepositoryImpl.java │ │ │ │ │ └── UserRepositoryImpl.kapt_metadata │ │ │ │ └── usecase │ │ │ │ │ ├── UserUseCase.java │ │ │ │ │ └── UserUseCase.kapt_metadata │ │ │ │ └── presentation │ │ │ │ ├── ui │ │ │ │ ├── HomeScreenKt.java │ │ │ │ └── HomeScreenKt.kapt_metadata │ │ │ │ └── viewmodel │ │ │ │ ├── UsersViewModel.java │ │ │ │ └── UsersViewModel.kapt_metadata │ │ │ └── error │ │ │ └── NonExistentClass.java │ │ └── kotlin-classes │ │ └── debug │ │ ├── META-INF │ │ └── home_debug.kotlin_module │ │ └── com │ │ └── shakbari │ │ └── home │ │ ├── common │ │ ├── api │ │ │ ├── HomeApiHelper.class │ │ │ ├── HomeApiHelperImpl.class │ │ │ ├── HomeRetrofitApiService.class │ │ │ └── LiveLiterals$HomeApiHelperImplKt.class │ │ ├── di │ │ │ ├── HomeFeatureModule.class │ │ │ └── LiveLiterals$HomeFeatureModuleKt.class │ │ └── navigation │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1$createNavComposable$1$1.class │ │ │ ├── HomeNavModuleKt$homeScreenNavModule$1.class │ │ │ └── HomeNavModuleKt.class │ │ ├── domain │ │ ├── entity │ │ │ ├── LiveLiterals$UserKt.class │ │ │ └── User.class │ │ ├── repository │ │ │ ├── LiveLiterals$UserRepositoryImplKt.class │ │ │ ├── UserRepository.class │ │ │ └── UserRepositoryImpl.class │ │ └── usecase │ │ │ ├── LiveLiterals$UserUseCaseKt.class │ │ │ └── UserUseCase.class │ │ └── presentation │ │ ├── ui │ │ ├── ComposableSingletons$HomeScreenKt$lambda-1$1.class │ │ ├── ComposableSingletons$HomeScreenKt$lambda-2$1.class │ │ ├── ComposableSingletons$HomeScreenKt.class │ │ ├── HomeScreenKt.class │ │ └── LiveLiterals$HomeScreenKt.class │ │ └── viewmodel │ │ ├── LiveLiterals$UsersViewModelKt.class │ │ └── UsersViewModel.class │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── shakbari │ │ └── home │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── shakbari │ │ │ └── home │ │ │ ├── common │ │ │ ├── api │ │ │ │ ├── HomeApiHelper.kt │ │ │ │ ├── HomeApiHelperImpl.kt │ │ │ │ └── HomeRetrofitApiService.kt │ │ │ ├── di │ │ │ │ └── HomeFeatureModule.kt │ │ │ └── navigation │ │ │ │ └── HomeNavModule.kt │ │ │ ├── domain │ │ │ ├── entity │ │ │ │ └── User.kt │ │ │ ├── repository │ │ │ │ ├── UserRepository.kt │ │ │ │ └── UserRepositoryImpl.kt │ │ │ └── usecase │ │ │ │ └── UserUseCase.kt │ │ │ └── presentation │ │ │ ├── contract │ │ │ └── HomeContract.kt │ │ │ ├── pagination │ │ │ └── UserSource.kt │ │ │ ├── ui │ │ │ └── HomeScreen.kt │ │ │ └── viewmodel │ │ │ └── UsersViewModel.kt │ └── res │ │ └── drawable │ │ └── ic_android_black_24dp.xml │ └── test │ └── java │ └── com │ └── shakbari │ └── home │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── navigation ├── .gitignore ├── build.gradle ├── build │ ├── .transforms │ │ ├── 52125eebbae250eacf7eb04806340e71 │ │ │ └── results.bin │ │ ├── 531026474339a21b2040cba2b7ab8b24 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── shakbari │ │ │ │ │ └── navigation │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ ├── LiveLiterals$ScreenKt.dex │ │ │ │ │ ├── Screen$Detail.dex │ │ │ │ │ ├── Screen$Home.dex │ │ │ │ │ ├── Screen.dex │ │ │ │ │ ├── base │ │ │ │ │ ├── LiveLiterals$MultiNavigationExtentionKt.dex │ │ │ │ │ ├── LiveLiterals$MultiNavigationModuleKt.dex │ │ │ │ │ ├── MultiNavCompose.dex │ │ │ │ │ ├── MultiNavigationExtentionKt.dex │ │ │ │ │ ├── MultiNavigationModuleKt$multiNavigationModule$1.dex │ │ │ │ │ ├── MultiNavigationModuleKt.dex │ │ │ │ │ └── NavComposableModule.dex │ │ │ │ │ └── pro │ │ │ │ │ ├── ComposableSingletons$NavigatorKt$lambda-1$1.dex │ │ │ │ │ ├── ComposableSingletons$NavigatorKt$lambda-2$1.dex │ │ │ │ │ ├── ComposableSingletons$NavigatorKt.dex │ │ │ │ │ ├── LiveLiterals$NavigatorKt.dex │ │ │ │ │ ├── LiveLiterals$SharedScreenKt.dex │ │ │ │ │ ├── Navigator$last$2.dex │ │ │ │ │ ├── Navigator$lastItem$2.dex │ │ │ │ │ ├── Navigator.dex │ │ │ │ │ ├── NavigatorKt$CurrentScreen$1.dex │ │ │ │ │ ├── NavigatorKt$CurrentScreen$2.dex │ │ │ │ │ ├── NavigatorKt$Navigator$1.dex │ │ │ │ │ ├── NavigatorKt$Navigator$2.dex │ │ │ │ │ ├── NavigatorKt$Navigator$3.dex │ │ │ │ │ ├── NavigatorKt$Navigator$5$1.dex │ │ │ │ │ ├── NavigatorKt$Navigator$5.dex │ │ │ │ │ ├── NavigatorKt$Navigator$6.dex │ │ │ │ │ ├── NavigatorKt$navController$1.dex │ │ │ │ │ ├── NavigatorKt.dex │ │ │ │ │ ├── SharedScreen$Details.dex │ │ │ │ │ ├── SharedScreen$HomeScreen.dex │ │ │ │ │ ├── SharedScreen.dex │ │ │ │ │ ├── internal │ │ │ │ │ ├── LiveLiterals$NavigatorBackHandlerKt.dex │ │ │ │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$1.dex │ │ │ │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$2.dex │ │ │ │ │ ├── NavigatorBackHandlerKt.dex │ │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1$invoke$$inlined$onDispose$1.dex │ │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1.dex │ │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$2.dex │ │ │ │ │ ├── NavigatorDisposableKt.dex │ │ │ │ │ ├── NavigatorSaverKt$LocalNavigatorStateHolder$1.dex │ │ │ │ │ ├── NavigatorSaverKt$navigatorSaver$1.dex │ │ │ │ │ ├── NavigatorSaverKt$navigatorSaver$2.dex │ │ │ │ │ ├── NavigatorSaverKt$rememberNavigator$1.dex │ │ │ │ │ └── NavigatorSaverKt.dex │ │ │ │ │ └── utils │ │ │ │ │ ├── lifecycle │ │ │ │ │ ├── DefaultScreenLifecycleOwner.dex │ │ │ │ │ ├── LiveLiterals$ScreenLifecycleHooksKt.dex │ │ │ │ │ ├── LiveLiterals$ScreenLifecycleStoreKt.dex │ │ │ │ │ ├── ScreenLifecycleHooks$1.dex │ │ │ │ │ ├── ScreenLifecycleHooks$Companion.dex │ │ │ │ │ ├── ScreenLifecycleHooks.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$1.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$2.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1$invoke$$inlined$onDispose$1.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$4.dex │ │ │ │ │ ├── ScreenLifecycleKt.dex │ │ │ │ │ ├── ScreenLifecycleOwner$DefaultImpls.dex │ │ │ │ │ ├── ScreenLifecycleOwner.dex │ │ │ │ │ ├── ScreenLifecycleProvider.dex │ │ │ │ │ └── ScreenLifecycleStore.dex │ │ │ │ │ ├── model │ │ │ │ │ ├── LiveLiterals$ScreenModelKt.dex │ │ │ │ │ ├── LiveLiterals$ScreenModelStoreKt.dex │ │ │ │ │ ├── ScreenModel$DefaultImpls.dex │ │ │ │ │ ├── ScreenModel.dex │ │ │ │ │ ├── ScreenModelKt$coroutineScope$1.dex │ │ │ │ │ ├── ScreenModelKt$coroutineScope$2.dex │ │ │ │ │ ├── ScreenModelKt.dex │ │ │ │ │ ├── ScreenModelStore$getOrPutDependency$1.dex │ │ │ │ │ ├── ScreenModelStore$onEach$1.dex │ │ │ │ │ ├── ScreenModelStore$onEach$2.dex │ │ │ │ │ ├── ScreenModelStore$remove$1.dex │ │ │ │ │ ├── ScreenModelStore$remove$2.dex │ │ │ │ │ ├── ScreenModelStore.dex │ │ │ │ │ ├── ScreenModelStoreKt.dex │ │ │ │ │ └── StateScreenModel.dex │ │ │ │ │ ├── registry │ │ │ │ │ ├── LiveLiterals$ScreenRegistryKt.dex │ │ │ │ │ ├── ScreenModuleKt$screenModule$1.dex │ │ │ │ │ ├── ScreenModuleKt.dex │ │ │ │ │ ├── ScreenProvider.dex │ │ │ │ │ ├── ScreenProviderKt.dex │ │ │ │ │ ├── ScreenRegistry.dex │ │ │ │ │ └── ScreenRegistryKt.dex │ │ │ │ │ ├── screen │ │ │ │ │ ├── LiveLiterals$ScreenKeyKt.dex │ │ │ │ │ ├── LiveLiterals$ScreenKt.dex │ │ │ │ │ ├── Screen$DefaultImpls.dex │ │ │ │ │ ├── Screen.dex │ │ │ │ │ └── ScreenKeyKt.dex │ │ │ │ │ └── stack │ │ │ │ │ ├── LiveLiterals$SnapshotStateStackKt.dex │ │ │ │ │ ├── SnapshotStateStack$canPop$2.dex │ │ │ │ │ ├── SnapshotStateStack$isEmpty$2.dex │ │ │ │ │ ├── SnapshotStateStack$items$2.dex │ │ │ │ │ ├── SnapshotStateStack$lastItemOrNull$2.dex │ │ │ │ │ ├── SnapshotStateStack$lastOrNull$2.dex │ │ │ │ │ ├── SnapshotStateStack$popAll$1.dex │ │ │ │ │ ├── SnapshotStateStack$popUntil$shouldPop$1.dex │ │ │ │ │ ├── SnapshotStateStack$size$2.dex │ │ │ │ │ ├── SnapshotStateStack.dex │ │ │ │ │ ├── SnapshotStateStackKt$rememberStateStack$1.dex │ │ │ │ │ ├── SnapshotStateStackKt$stackSaver$1.dex │ │ │ │ │ ├── SnapshotStateStackKt$stackSaver$2.dex │ │ │ │ │ ├── SnapshotStateStackKt.dex │ │ │ │ │ ├── Stack$DefaultImpls.dex │ │ │ │ │ ├── Stack.dex │ │ │ │ │ ├── StackEvent.dex │ │ │ │ │ ├── StackKt$popUntil$1.dex │ │ │ │ │ └── StackKt.dex │ │ │ │ └── desugar_graph.bin │ │ ├── 628c2602a6e244c7ae508eba76c4d150 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ └── classes │ │ │ │ └── classes.dex │ │ ├── 80c70b9876463ed617f4cfa106b99fee │ │ │ └── results.bin │ │ ├── 9ce86e359da7a55994f3d4d6e14acf87 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── shakbari │ │ │ │ │ └── navigation │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ ├── LiveLiterals$ScreenKt.dex │ │ │ │ │ ├── Screen$Detail.dex │ │ │ │ │ ├── Screen$Home.dex │ │ │ │ │ ├── Screen.dex │ │ │ │ │ ├── base │ │ │ │ │ ├── LiveLiterals$MultiNavigationExtentionKt.dex │ │ │ │ │ ├── LiveLiterals$MultiNavigationModuleKt.dex │ │ │ │ │ ├── MultiNavCompose.dex │ │ │ │ │ ├── MultiNavigationExtentionKt.dex │ │ │ │ │ ├── MultiNavigationModuleKt$multiNavigationModule$1.dex │ │ │ │ │ ├── MultiNavigationModuleKt.dex │ │ │ │ │ └── NavComposableModule.dex │ │ │ │ │ └── pro │ │ │ │ │ ├── ComposableSingletons$NavigatorKt$lambda-1$1.dex │ │ │ │ │ ├── ComposableSingletons$NavigatorKt$lambda-2$1.dex │ │ │ │ │ ├── ComposableSingletons$NavigatorKt.dex │ │ │ │ │ ├── LiveLiterals$NavigatorKt.dex │ │ │ │ │ ├── LiveLiterals$SharedScreenKt.dex │ │ │ │ │ ├── Navigator$last$2.dex │ │ │ │ │ ├── Navigator$lastItem$2.dex │ │ │ │ │ ├── Navigator.dex │ │ │ │ │ ├── NavigatorKt$CurrentScreen$1.dex │ │ │ │ │ ├── NavigatorKt$CurrentScreen$2.dex │ │ │ │ │ ├── NavigatorKt$Navigator$1.dex │ │ │ │ │ ├── NavigatorKt$Navigator$2.dex │ │ │ │ │ ├── NavigatorKt$Navigator$3.dex │ │ │ │ │ ├── NavigatorKt$Navigator$5$1.dex │ │ │ │ │ ├── NavigatorKt$Navigator$5.dex │ │ │ │ │ ├── NavigatorKt$Navigator$6.dex │ │ │ │ │ ├── NavigatorKt$navController$1.dex │ │ │ │ │ ├── NavigatorKt.dex │ │ │ │ │ ├── SharedScreen$Details.dex │ │ │ │ │ ├── SharedScreen$HomeScreen.dex │ │ │ │ │ ├── SharedScreen.dex │ │ │ │ │ ├── internal │ │ │ │ │ ├── LiveLiterals$NavigatorBackHandlerKt.dex │ │ │ │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$1.dex │ │ │ │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$2.dex │ │ │ │ │ ├── NavigatorBackHandlerKt.dex │ │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1$invoke$$inlined$onDispose$1.dex │ │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1.dex │ │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$2.dex │ │ │ │ │ ├── NavigatorDisposableKt.dex │ │ │ │ │ ├── NavigatorSaverKt$LocalNavigatorStateHolder$1.dex │ │ │ │ │ ├── NavigatorSaverKt$navigatorSaver$1.dex │ │ │ │ │ ├── NavigatorSaverKt$navigatorSaver$2.dex │ │ │ │ │ ├── NavigatorSaverKt$rememberNavigator$1.dex │ │ │ │ │ └── NavigatorSaverKt.dex │ │ │ │ │ └── utils │ │ │ │ │ ├── lifecycle │ │ │ │ │ ├── DefaultScreenLifecycleOwner.dex │ │ │ │ │ ├── LiveLiterals$ScreenLifecycleHooksKt.dex │ │ │ │ │ ├── LiveLiterals$ScreenLifecycleStoreKt.dex │ │ │ │ │ ├── ScreenLifecycleHooks$1.dex │ │ │ │ │ ├── ScreenLifecycleHooks$Companion.dex │ │ │ │ │ ├── ScreenLifecycleHooks.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$1.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$2.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1$invoke$$inlined$onDispose$1.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$4.dex │ │ │ │ │ ├── ScreenLifecycleKt.dex │ │ │ │ │ ├── ScreenLifecycleOwner$DefaultImpls.dex │ │ │ │ │ ├── ScreenLifecycleOwner.dex │ │ │ │ │ ├── ScreenLifecycleProvider.dex │ │ │ │ │ └── ScreenLifecycleStore.dex │ │ │ │ │ ├── model │ │ │ │ │ ├── LiveLiterals$ScreenModelKt.dex │ │ │ │ │ ├── LiveLiterals$ScreenModelStoreKt.dex │ │ │ │ │ ├── ScreenModel$DefaultImpls.dex │ │ │ │ │ ├── ScreenModel.dex │ │ │ │ │ ├── ScreenModelKt$coroutineScope$1.dex │ │ │ │ │ ├── ScreenModelKt$coroutineScope$2.dex │ │ │ │ │ ├── ScreenModelKt.dex │ │ │ │ │ ├── ScreenModelStore$getOrPutDependency$1.dex │ │ │ │ │ ├── ScreenModelStore$onEach$1.dex │ │ │ │ │ ├── ScreenModelStore$onEach$2.dex │ │ │ │ │ ├── ScreenModelStore$remove$1.dex │ │ │ │ │ ├── ScreenModelStore$remove$2.dex │ │ │ │ │ ├── ScreenModelStore.dex │ │ │ │ │ ├── ScreenModelStoreKt.dex │ │ │ │ │ └── StateScreenModel.dex │ │ │ │ │ ├── registry │ │ │ │ │ ├── LiveLiterals$ScreenRegistryKt.dex │ │ │ │ │ ├── ScreenModuleKt$screenModule$1.dex │ │ │ │ │ ├── ScreenModuleKt.dex │ │ │ │ │ ├── ScreenProvider.dex │ │ │ │ │ ├── ScreenProviderKt.dex │ │ │ │ │ ├── ScreenRegistry.dex │ │ │ │ │ └── ScreenRegistryKt.dex │ │ │ │ │ ├── screen │ │ │ │ │ ├── LiveLiterals$ScreenKeyKt.dex │ │ │ │ │ ├── LiveLiterals$ScreenKt.dex │ │ │ │ │ ├── Screen$DefaultImpls.dex │ │ │ │ │ ├── Screen.dex │ │ │ │ │ └── ScreenKeyKt.dex │ │ │ │ │ └── stack │ │ │ │ │ ├── LiveLiterals$SnapshotStateStackKt.dex │ │ │ │ │ ├── SnapshotStateStack$canPop$2.dex │ │ │ │ │ ├── SnapshotStateStack$isEmpty$2.dex │ │ │ │ │ ├── SnapshotStateStack$items$2.dex │ │ │ │ │ ├── SnapshotStateStack$lastItemOrNull$2.dex │ │ │ │ │ ├── SnapshotStateStack$lastOrNull$2.dex │ │ │ │ │ ├── SnapshotStateStack$popAll$1.dex │ │ │ │ │ ├── SnapshotStateStack$popUntil$shouldPop$1.dex │ │ │ │ │ ├── SnapshotStateStack$size$2.dex │ │ │ │ │ ├── SnapshotStateStack.dex │ │ │ │ │ ├── SnapshotStateStackKt$rememberStateStack$1.dex │ │ │ │ │ ├── SnapshotStateStackKt$stackSaver$1.dex │ │ │ │ │ ├── SnapshotStateStackKt$stackSaver$2.dex │ │ │ │ │ ├── SnapshotStateStackKt.dex │ │ │ │ │ ├── Stack$DefaultImpls.dex │ │ │ │ │ ├── Stack.dex │ │ │ │ │ ├── StackEvent.dex │ │ │ │ │ ├── StackKt$popUntil$1.dex │ │ │ │ │ └── StackKt.dex │ │ │ │ └── desugar_graph.bin │ │ ├── b5fc95c74f3d7cb5e6a62a7f3afbfe32 │ │ │ ├── results.bin │ │ │ └── transformed │ │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── shakbari │ │ │ │ │ └── navigation │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ ├── LiveLiterals$ScreenKt.dex │ │ │ │ │ ├── Screen$Detail.dex │ │ │ │ │ ├── Screen$Home.dex │ │ │ │ │ ├── Screen.dex │ │ │ │ │ ├── base │ │ │ │ │ ├── LiveLiterals$MultiNavigationExtentionKt.dex │ │ │ │ │ ├── LiveLiterals$MultiNavigationModuleKt.dex │ │ │ │ │ ├── MultiNavCompose.dex │ │ │ │ │ ├── MultiNavigationExtentionKt.dex │ │ │ │ │ ├── MultiNavigationModuleKt$multiNavigationModule$1.dex │ │ │ │ │ ├── MultiNavigationModuleKt.dex │ │ │ │ │ └── NavComposableModule.dex │ │ │ │ │ └── pro │ │ │ │ │ ├── ComposableSingletons$NavigatorKt$lambda-1$1.dex │ │ │ │ │ ├── ComposableSingletons$NavigatorKt$lambda-2$1.dex │ │ │ │ │ ├── ComposableSingletons$NavigatorKt.dex │ │ │ │ │ ├── LiveLiterals$NavigatorKt.dex │ │ │ │ │ ├── LiveLiterals$SharedScreenKt.dex │ │ │ │ │ ├── Navigator$last$2.dex │ │ │ │ │ ├── Navigator$lastItem$2.dex │ │ │ │ │ ├── Navigator.dex │ │ │ │ │ ├── NavigatorKt$CurrentScreen$1.dex │ │ │ │ │ ├── NavigatorKt$CurrentScreen$2.dex │ │ │ │ │ ├── NavigatorKt$Navigator$1.dex │ │ │ │ │ ├── NavigatorKt$Navigator$2.dex │ │ │ │ │ ├── NavigatorKt$Navigator$3.dex │ │ │ │ │ ├── NavigatorKt$Navigator$5$1.dex │ │ │ │ │ ├── NavigatorKt$Navigator$5.dex │ │ │ │ │ ├── NavigatorKt$Navigator$6.dex │ │ │ │ │ ├── NavigatorKt$navController$1.dex │ │ │ │ │ ├── NavigatorKt.dex │ │ │ │ │ ├── SharedScreen$Details.dex │ │ │ │ │ ├── SharedScreen$HomeScreen.dex │ │ │ │ │ ├── SharedScreen.dex │ │ │ │ │ ├── internal │ │ │ │ │ ├── LiveLiterals$NavigatorBackHandlerKt.dex │ │ │ │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$1.dex │ │ │ │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$2.dex │ │ │ │ │ ├── NavigatorBackHandlerKt.dex │ │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1$invoke$$inlined$onDispose$1.dex │ │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1.dex │ │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$2.dex │ │ │ │ │ ├── NavigatorDisposableKt.dex │ │ │ │ │ ├── NavigatorSaverKt$LocalNavigatorStateHolder$1.dex │ │ │ │ │ ├── NavigatorSaverKt$navigatorSaver$1.dex │ │ │ │ │ ├── NavigatorSaverKt$navigatorSaver$2.dex │ │ │ │ │ ├── NavigatorSaverKt$rememberNavigator$1.dex │ │ │ │ │ └── NavigatorSaverKt.dex │ │ │ │ │ └── utils │ │ │ │ │ ├── lifecycle │ │ │ │ │ ├── DefaultScreenLifecycleOwner.dex │ │ │ │ │ ├── LiveLiterals$ScreenLifecycleHooksKt.dex │ │ │ │ │ ├── LiveLiterals$ScreenLifecycleStoreKt.dex │ │ │ │ │ ├── ScreenLifecycleHooks$1.dex │ │ │ │ │ ├── ScreenLifecycleHooks$Companion.dex │ │ │ │ │ ├── ScreenLifecycleHooks.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$1.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$2.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1$invoke$$inlined$onDispose$1.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1.dex │ │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$4.dex │ │ │ │ │ ├── ScreenLifecycleKt.dex │ │ │ │ │ ├── ScreenLifecycleOwner$DefaultImpls.dex │ │ │ │ │ ├── ScreenLifecycleOwner.dex │ │ │ │ │ ├── ScreenLifecycleProvider.dex │ │ │ │ │ └── ScreenLifecycleStore.dex │ │ │ │ │ ├── model │ │ │ │ │ ├── LiveLiterals$ScreenModelKt.dex │ │ │ │ │ ├── LiveLiterals$ScreenModelStoreKt.dex │ │ │ │ │ ├── ScreenModel$DefaultImpls.dex │ │ │ │ │ ├── ScreenModel.dex │ │ │ │ │ ├── ScreenModelKt$coroutineScope$1.dex │ │ │ │ │ ├── ScreenModelKt$coroutineScope$2.dex │ │ │ │ │ ├── ScreenModelKt.dex │ │ │ │ │ ├── ScreenModelStore$getOrPutDependency$1.dex │ │ │ │ │ ├── ScreenModelStore$onEach$1.dex │ │ │ │ │ ├── ScreenModelStore$onEach$2.dex │ │ │ │ │ ├── ScreenModelStore$remove$1.dex │ │ │ │ │ ├── ScreenModelStore$remove$2.dex │ │ │ │ │ ├── ScreenModelStore.dex │ │ │ │ │ ├── ScreenModelStoreKt.dex │ │ │ │ │ └── StateScreenModel.dex │ │ │ │ │ ├── registry │ │ │ │ │ ├── LiveLiterals$ScreenRegistryKt.dex │ │ │ │ │ ├── ScreenModuleKt$screenModule$1.dex │ │ │ │ │ ├── ScreenModuleKt.dex │ │ │ │ │ ├── ScreenProvider.dex │ │ │ │ │ ├── ScreenProviderKt.dex │ │ │ │ │ ├── ScreenRegistry.dex │ │ │ │ │ └── ScreenRegistryKt.dex │ │ │ │ │ ├── screen │ │ │ │ │ ├── LiveLiterals$ScreenKeyKt.dex │ │ │ │ │ ├── LiveLiterals$ScreenKt.dex │ │ │ │ │ ├── Screen$DefaultImpls.dex │ │ │ │ │ ├── Screen.dex │ │ │ │ │ └── ScreenKeyKt.dex │ │ │ │ │ └── stack │ │ │ │ │ ├── LiveLiterals$SnapshotStateStackKt.dex │ │ │ │ │ ├── SnapshotStateStack$canPop$2.dex │ │ │ │ │ ├── SnapshotStateStack$isEmpty$2.dex │ │ │ │ │ ├── SnapshotStateStack$items$2.dex │ │ │ │ │ ├── SnapshotStateStack$lastItemOrNull$2.dex │ │ │ │ │ ├── SnapshotStateStack$lastOrNull$2.dex │ │ │ │ │ ├── SnapshotStateStack$popAll$1.dex │ │ │ │ │ ├── SnapshotStateStack$popUntil$shouldPop$1.dex │ │ │ │ │ ├── SnapshotStateStack$size$2.dex │ │ │ │ │ ├── SnapshotStateStack.dex │ │ │ │ │ ├── SnapshotStateStackKt$rememberStateStack$1.dex │ │ │ │ │ ├── SnapshotStateStackKt$stackSaver$1.dex │ │ │ │ │ ├── SnapshotStateStackKt$stackSaver$2.dex │ │ │ │ │ ├── SnapshotStateStackKt.dex │ │ │ │ │ ├── Stack$DefaultImpls.dex │ │ │ │ │ ├── Stack.dex │ │ │ │ │ ├── StackEvent.dex │ │ │ │ │ ├── StackKt$popUntil$1.dex │ │ │ │ │ └── StackKt.dex │ │ │ │ └── desugar_graph.bin │ │ └── daa7a6f239ef4d211aa363679a2389fb │ │ │ └── results.bin │ ├── generated │ │ └── source │ │ │ └── buildConfig │ │ │ └── debug │ │ │ └── com │ │ │ └── shakbari │ │ │ └── navigation │ │ │ └── BuildConfig.java │ ├── intermediates │ │ ├── aapt_friendly_merged_manifests │ │ │ └── debug │ │ │ │ └── aapt │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output-metadata.json │ │ ├── aar_metadata │ │ │ └── debug │ │ │ │ └── aar-metadata.properties │ │ ├── annotation_processor_list │ │ │ └── debug │ │ │ │ └── annotationProcessors.json │ │ ├── compile_library_classes_jar │ │ │ └── debug │ │ │ │ └── classes.jar │ │ ├── compile_r_class_jar │ │ │ └── debug │ │ │ │ └── R.jar │ │ ├── compile_symbol_list │ │ │ └── debug │ │ │ │ └── R.txt │ │ ├── incremental │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebugAssets │ │ │ │ └── merger.xml │ │ │ └── packageDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ ├── javac │ │ │ └── debug │ │ │ │ └── classes │ │ │ │ └── com │ │ │ │ └── shakbari │ │ │ │ └── navigation │ │ │ │ └── BuildConfig.class │ │ ├── library_java_res │ │ │ └── debug │ │ │ │ └── res.jar │ │ ├── local_only_symbol_list │ │ │ └── debug │ │ │ │ └── R-def.txt │ │ ├── manifest_merge_blame_file │ │ │ └── debug │ │ │ │ └── manifest-merger-blame-debug-report.txt │ │ ├── merged_manifest │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── navigation_json │ │ │ └── debug │ │ │ │ └── navigation.json │ │ ├── packaged_manifests │ │ │ └── debug │ │ │ │ └── output-metadata.json │ │ ├── runtime_library_classes_dir │ │ │ └── debug │ │ │ │ ├── META-INF │ │ │ │ └── navigation_debug.kotlin_module │ │ │ │ └── com │ │ │ │ └── shakbari │ │ │ │ └── navigation │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── LiveLiterals$ScreenKt.class │ │ │ │ ├── Screen$Detail.class │ │ │ │ ├── Screen$Home.class │ │ │ │ ├── Screen.class │ │ │ │ ├── base │ │ │ │ ├── LiveLiterals$MultiNavigationExtentionKt.class │ │ │ │ ├── LiveLiterals$MultiNavigationModuleKt.class │ │ │ │ ├── MultiNavCompose.class │ │ │ │ ├── MultiNavigationExtentionKt.class │ │ │ │ ├── MultiNavigationModuleKt$multiNavigationModule$1.class │ │ │ │ ├── MultiNavigationModuleKt.class │ │ │ │ └── NavComposableModule.class │ │ │ │ └── pro │ │ │ │ ├── ComposableSingletons$NavigatorKt$lambda-1$1.class │ │ │ │ ├── ComposableSingletons$NavigatorKt$lambda-2$1.class │ │ │ │ ├── ComposableSingletons$NavigatorKt.class │ │ │ │ ├── LiveLiterals$NavigatorKt.class │ │ │ │ ├── LiveLiterals$SharedScreenKt.class │ │ │ │ ├── Navigator$last$2.class │ │ │ │ ├── Navigator$lastItem$2.class │ │ │ │ ├── Navigator.class │ │ │ │ ├── NavigatorKt$CurrentScreen$1.class │ │ │ │ ├── NavigatorKt$CurrentScreen$2.class │ │ │ │ ├── NavigatorKt$Navigator$1.class │ │ │ │ ├── NavigatorKt$Navigator$2.class │ │ │ │ ├── NavigatorKt$Navigator$3.class │ │ │ │ ├── NavigatorKt$Navigator$5$1.class │ │ │ │ ├── NavigatorKt$Navigator$5.class │ │ │ │ ├── NavigatorKt$Navigator$6.class │ │ │ │ ├── NavigatorKt$navController$1.class │ │ │ │ ├── NavigatorKt.class │ │ │ │ ├── SharedScreen$Details.class │ │ │ │ ├── SharedScreen$HomeScreen.class │ │ │ │ ├── SharedScreen.class │ │ │ │ ├── internal │ │ │ │ ├── LiveLiterals$NavigatorBackHandlerKt.class │ │ │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$1.class │ │ │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$2.class │ │ │ │ ├── NavigatorBackHandlerKt.class │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1$invoke$$inlined$onDispose$1.class │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1.class │ │ │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$2.class │ │ │ │ ├── NavigatorDisposableKt.class │ │ │ │ ├── NavigatorSaverKt$LocalNavigatorStateHolder$1.class │ │ │ │ ├── NavigatorSaverKt$navigatorSaver$1.class │ │ │ │ ├── NavigatorSaverKt$navigatorSaver$2.class │ │ │ │ ├── NavigatorSaverKt$rememberNavigator$1.class │ │ │ │ └── NavigatorSaverKt.class │ │ │ │ └── utils │ │ │ │ ├── lifecycle │ │ │ │ ├── DefaultScreenLifecycleOwner.class │ │ │ │ ├── LiveLiterals$ScreenLifecycleHooksKt.class │ │ │ │ ├── LiveLiterals$ScreenLifecycleStoreKt.class │ │ │ │ ├── ScreenLifecycleHooks$1.class │ │ │ │ ├── ScreenLifecycleHooks$Companion.class │ │ │ │ ├── ScreenLifecycleHooks.class │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$1.class │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$2.class │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1$invoke$$inlined$onDispose$1.class │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1.class │ │ │ │ ├── ScreenLifecycleKt$LifecycleEffect$4.class │ │ │ │ ├── ScreenLifecycleKt.class │ │ │ │ ├── ScreenLifecycleOwner$DefaultImpls.class │ │ │ │ ├── ScreenLifecycleOwner.class │ │ │ │ ├── ScreenLifecycleProvider.class │ │ │ │ └── ScreenLifecycleStore.class │ │ │ │ ├── model │ │ │ │ ├── LiveLiterals$ScreenModelKt.class │ │ │ │ ├── LiveLiterals$ScreenModelStoreKt.class │ │ │ │ ├── ScreenModel$DefaultImpls.class │ │ │ │ ├── ScreenModel.class │ │ │ │ ├── ScreenModelKt$coroutineScope$1.class │ │ │ │ ├── ScreenModelKt$coroutineScope$2.class │ │ │ │ ├── ScreenModelKt.class │ │ │ │ ├── ScreenModelStore$getOrPutDependency$1.class │ │ │ │ ├── ScreenModelStore$onEach$1.class │ │ │ │ ├── ScreenModelStore$onEach$2.class │ │ │ │ ├── ScreenModelStore$remove$1.class │ │ │ │ ├── ScreenModelStore$remove$2.class │ │ │ │ ├── ScreenModelStore.class │ │ │ │ ├── ScreenModelStoreKt.class │ │ │ │ └── StateScreenModel.class │ │ │ │ ├── registry │ │ │ │ ├── LiveLiterals$ScreenRegistryKt.class │ │ │ │ ├── ScreenModuleKt$screenModule$1.class │ │ │ │ ├── ScreenModuleKt.class │ │ │ │ ├── ScreenProvider.class │ │ │ │ ├── ScreenProviderKt.class │ │ │ │ ├── ScreenRegistry.class │ │ │ │ └── ScreenRegistryKt.class │ │ │ │ ├── screen │ │ │ │ ├── LiveLiterals$ScreenKeyKt.class │ │ │ │ ├── LiveLiterals$ScreenKt.class │ │ │ │ ├── Screen$DefaultImpls.class │ │ │ │ ├── Screen.class │ │ │ │ └── ScreenKeyKt.class │ │ │ │ └── stack │ │ │ │ ├── LiveLiterals$SnapshotStateStackKt.class │ │ │ │ ├── SnapshotStateStack$canPop$2.class │ │ │ │ ├── SnapshotStateStack$isEmpty$2.class │ │ │ │ ├── SnapshotStateStack$items$2.class │ │ │ │ ├── SnapshotStateStack$lastItemOrNull$2.class │ │ │ │ ├── SnapshotStateStack$lastOrNull$2.class │ │ │ │ ├── SnapshotStateStack$popAll$1.class │ │ │ │ ├── SnapshotStateStack$popUntil$shouldPop$1.class │ │ │ │ ├── SnapshotStateStack$size$2.class │ │ │ │ ├── SnapshotStateStack.class │ │ │ │ ├── SnapshotStateStackKt$rememberStateStack$1.class │ │ │ │ ├── SnapshotStateStackKt$stackSaver$1.class │ │ │ │ ├── SnapshotStateStackKt$stackSaver$2.class │ │ │ │ ├── SnapshotStateStackKt.class │ │ │ │ ├── Stack$DefaultImpls.class │ │ │ │ ├── Stack.class │ │ │ │ ├── StackEvent.class │ │ │ │ ├── StackKt$popUntil$1.class │ │ │ │ └── StackKt.class │ │ ├── runtime_library_classes_jar │ │ │ └── debug │ │ │ │ └── classes.jar │ │ └── symbol_list_with_package_name │ │ │ └── debug │ │ │ └── package-aware-r.txt │ ├── kotlin │ │ └── compileDebugKotlin │ │ │ ├── build-history.bin │ │ │ ├── caches-jvm │ │ │ ├── inputs │ │ │ │ ├── source-to-output.tab │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ ├── source-to-output.tab.len │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ ├── source-to-output.tab_i │ │ │ │ └── source-to-output.tab_i.len │ │ │ ├── jvm │ │ │ │ └── kotlin │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ ├── constants.tab │ │ │ │ │ ├── constants.tab.keystream │ │ │ │ │ ├── constants.tab.keystream.len │ │ │ │ │ ├── constants.tab.len │ │ │ │ │ ├── constants.tab.values.at │ │ │ │ │ ├── constants.tab_i │ │ │ │ │ ├── constants.tab_i.len │ │ │ │ │ ├── inline-functions.tab │ │ │ │ │ ├── inline-functions.tab.keystream │ │ │ │ │ ├── inline-functions.tab.keystream.len │ │ │ │ │ ├── inline-functions.tab.len │ │ │ │ │ ├── inline-functions.tab.values.at │ │ │ │ │ ├── inline-functions.tab_i │ │ │ │ │ ├── inline-functions.tab_i.len │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ ├── package-parts.tab │ │ │ │ │ ├── package-parts.tab.keystream │ │ │ │ │ ├── package-parts.tab.keystream.len │ │ │ │ │ ├── package-parts.tab.len │ │ │ │ │ ├── package-parts.tab.values.at │ │ │ │ │ ├── package-parts.tab_i │ │ │ │ │ ├── package-parts.tab_i.len │ │ │ │ │ ├── proto.tab │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ └── supertypes.tab_i.len │ │ │ └── lookups │ │ │ │ ├── counters.tab │ │ │ │ ├── file-to-id.tab │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ ├── file-to-id.tab.len │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ ├── file-to-id.tab_i │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ ├── id-to-file.tab │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ ├── id-to-file.tab.len │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ ├── id-to-file.tab_i │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ ├── lookups.tab │ │ │ │ ├── lookups.tab.keystream │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ ├── lookups.tab.len │ │ │ │ ├── lookups.tab.values.at │ │ │ │ ├── lookups.tab_i │ │ │ │ └── lookups.tab_i.len │ │ │ └── last-build.bin │ ├── outputs │ │ └── logs │ │ │ └── manifest-merger-debug-report.txt │ └── tmp │ │ ├── compileDebugJavaWithJavac │ │ └── source-classes-mapping.txt │ │ └── kotlin-classes │ │ └── debug │ │ ├── META-INF │ │ └── navigation_debug.kotlin_module │ │ └── com │ │ └── shakbari │ │ └── navigation │ │ ├── LiveLiterals$ScreenKt.class │ │ ├── Screen$Detail.class │ │ ├── Screen$Home.class │ │ ├── Screen.class │ │ ├── base │ │ ├── LiveLiterals$MultiNavigationExtentionKt.class │ │ ├── LiveLiterals$MultiNavigationModuleKt.class │ │ ├── MultiNavCompose.class │ │ ├── MultiNavigationExtentionKt.class │ │ ├── MultiNavigationModuleKt$multiNavigationModule$1.class │ │ ├── MultiNavigationModuleKt.class │ │ └── NavComposableModule.class │ │ └── pro │ │ ├── ComposableSingletons$NavigatorKt$lambda-1$1.class │ │ ├── ComposableSingletons$NavigatorKt$lambda-2$1.class │ │ ├── ComposableSingletons$NavigatorKt.class │ │ ├── LiveLiterals$NavigatorKt.class │ │ ├── LiveLiterals$SharedScreenKt.class │ │ ├── Navigator$last$2.class │ │ ├── Navigator$lastItem$2.class │ │ ├── Navigator.class │ │ ├── NavigatorKt$CurrentScreen$1.class │ │ ├── NavigatorKt$CurrentScreen$2.class │ │ ├── NavigatorKt$Navigator$1.class │ │ ├── NavigatorKt$Navigator$2.class │ │ ├── NavigatorKt$Navigator$3.class │ │ ├── NavigatorKt$Navigator$5$1.class │ │ ├── NavigatorKt$Navigator$5.class │ │ ├── NavigatorKt$Navigator$6.class │ │ ├── NavigatorKt$navController$1.class │ │ ├── NavigatorKt.class │ │ ├── SharedScreen$Details.class │ │ ├── SharedScreen$HomeScreen.class │ │ ├── SharedScreen.class │ │ ├── internal │ │ ├── LiveLiterals$NavigatorBackHandlerKt.class │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$1.class │ │ ├── NavigatorBackHandlerKt$NavigatorBackHandler$2.class │ │ ├── NavigatorBackHandlerKt.class │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1$invoke$$inlined$onDispose$1.class │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$1.class │ │ ├── NavigatorDisposableKt$NavigatorDisposableEffect$2.class │ │ ├── NavigatorDisposableKt.class │ │ ├── NavigatorSaverKt$LocalNavigatorStateHolder$1.class │ │ ├── NavigatorSaverKt$navigatorSaver$1.class │ │ ├── NavigatorSaverKt$navigatorSaver$2.class │ │ ├── NavigatorSaverKt$rememberNavigator$1.class │ │ └── NavigatorSaverKt.class │ │ └── utils │ │ ├── lifecycle │ │ ├── DefaultScreenLifecycleOwner.class │ │ ├── LiveLiterals$ScreenLifecycleHooksKt.class │ │ ├── LiveLiterals$ScreenLifecycleStoreKt.class │ │ ├── ScreenLifecycleHooks$1.class │ │ ├── ScreenLifecycleHooks$Companion.class │ │ ├── ScreenLifecycleHooks.class │ │ ├── ScreenLifecycleKt$LifecycleEffect$1.class │ │ ├── ScreenLifecycleKt$LifecycleEffect$2.class │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1$invoke$$inlined$onDispose$1.class │ │ ├── ScreenLifecycleKt$LifecycleEffect$3$1.class │ │ ├── ScreenLifecycleKt$LifecycleEffect$4.class │ │ ├── ScreenLifecycleKt.class │ │ ├── ScreenLifecycleOwner$DefaultImpls.class │ │ ├── ScreenLifecycleOwner.class │ │ ├── ScreenLifecycleProvider.class │ │ └── ScreenLifecycleStore.class │ │ ├── model │ │ ├── LiveLiterals$ScreenModelKt.class │ │ ├── LiveLiterals$ScreenModelStoreKt.class │ │ ├── ScreenModel$DefaultImpls.class │ │ ├── ScreenModel.class │ │ ├── ScreenModelKt$coroutineScope$1.class │ │ ├── ScreenModelKt$coroutineScope$2.class │ │ ├── ScreenModelKt.class │ │ ├── ScreenModelStore$getOrPutDependency$1.class │ │ ├── ScreenModelStore$onEach$1.class │ │ ├── ScreenModelStore$onEach$2.class │ │ ├── ScreenModelStore$remove$1.class │ │ ├── ScreenModelStore$remove$2.class │ │ ├── ScreenModelStore.class │ │ ├── ScreenModelStoreKt.class │ │ └── StateScreenModel.class │ │ ├── registry │ │ ├── LiveLiterals$ScreenRegistryKt.class │ │ ├── ScreenModuleKt$screenModule$1.class │ │ ├── ScreenModuleKt.class │ │ ├── ScreenProvider.class │ │ ├── ScreenProviderKt.class │ │ ├── ScreenRegistry.class │ │ └── ScreenRegistryKt.class │ │ ├── screen │ │ ├── LiveLiterals$ScreenKeyKt.class │ │ ├── LiveLiterals$ScreenKt.class │ │ ├── Screen$DefaultImpls.class │ │ ├── Screen.class │ │ └── ScreenKeyKt.class │ │ └── stack │ │ ├── LiveLiterals$SnapshotStateStackKt.class │ │ ├── SnapshotStateStack$canPop$2.class │ │ ├── SnapshotStateStack$isEmpty$2.class │ │ ├── SnapshotStateStack$items$2.class │ │ ├── SnapshotStateStack$lastItemOrNull$2.class │ │ ├── SnapshotStateStack$lastOrNull$2.class │ │ ├── SnapshotStateStack$popAll$1.class │ │ ├── SnapshotStateStack$popUntil$shouldPop$1.class │ │ ├── SnapshotStateStack$size$2.class │ │ ├── SnapshotStateStack.class │ │ ├── SnapshotStateStackKt$rememberStateStack$1.class │ │ ├── SnapshotStateStackKt$stackSaver$1.class │ │ ├── SnapshotStateStackKt$stackSaver$2.class │ │ ├── SnapshotStateStackKt.class │ │ ├── Stack$DefaultImpls.class │ │ ├── Stack.class │ │ ├── StackEvent.class │ │ ├── StackKt$popUntil$1.class │ │ └── StackKt.class ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── shakbari │ │ └── navigation │ │ └── ExampleInstrumentedTest.kt │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── shakbari │ └── navigation │ ├── Screen.kt │ ├── base │ ├── MultiNavigationExtention.kt │ └── MultiNavigationModule.kt │ └── pro │ ├── Navigator.kt │ ├── SharedScreen.kt │ ├── internal │ ├── NavigatorBackHandler.kt │ ├── NavigatorDisposable.kt │ └── NavigatorSaver.kt │ └── utils │ ├── lifecycle │ ├── ScreenLifecycle.kt │ ├── ScreenLifecycleHooks.kt │ ├── ScreenLifecycleOwner.kt │ └── ScreenLifecycleStore.kt │ ├── model │ ├── ScreenModel.kt │ └── ScreenModelStore.kt │ ├── registry │ ├── ScreenModule.kt │ ├── ScreenProvider.kt │ └── ScreenRegistry.kt │ ├── screen │ ├── Screen.kt │ └── ScreenKey.kt │ └── stack │ ├── SnapshotStateStack.kt │ └── Stack.kt └── settings.gradle /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | composeBase -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build/intermediates/app_metadata/debug/app-metadata.properties: -------------------------------------------------------------------------------- 1 | appMetadataVersion=1.0 2 | androidGradlePluginVersion=7.0.4 -------------------------------------------------------------------------------- /app/build/intermediates/asm_instrumented_project_classes/debug/META-INF/app_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | B 3 | com.shakbari.compose.ui.themeColorKtShapeKtThemeKtTypeKt"* -------------------------------------------------------------------------------- /app/build/intermediates/asm_instrumented_project_jars/debug/0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/asm_instrumented_project_jars/debug/0.jar -------------------------------------------------------------------------------- /app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeExtDexDebug/classes2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeExtDexDebug/classes2.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/1/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/1/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/10/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/10/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/11/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/11/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/12/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/12/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/13/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/13/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/14/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/14/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/15/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/15/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/2/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/2/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/3/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/3/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/4/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/4/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/6/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/6/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/7/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/7/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/8/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/8/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeLibDexDebug/9/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeLibDexDebug/9/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeProjectDexDebug/7/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex/debug/mergeProjectDexDebug/7/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex_archive_input_jar_hashes/debug/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/dex_archive_input_jar_hashes/debug/out -------------------------------------------------------------------------------- /app/build/intermediates/dex_number_of_buckets_file/debug/out: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dp 4 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 24dp 4 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54dip 4 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0px 4 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 64dp 4 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 -------------------------------------------------------------------------------- /app/build/intermediates/javac/debug/classes/com/shakbari/compose/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/javac/debug/classes/com/shakbari/compose/BuildConfig.class -------------------------------------------------------------------------------- /app/build/intermediates/javac/debug/classes/com/shakbari/compose/Hilt_App$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/javac/debug/classes/com/shakbari/compose/Hilt_App$1.class -------------------------------------------------------------------------------- /app/build/intermediates/javac/debug/classes/com/shakbari/compose/Hilt_App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/javac/debug/classes/com/shakbari/compose/Hilt_App.class -------------------------------------------------------------------------------- /app/build/intermediates/merged_java_res/debug/base.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_java_res/debug/base.jar -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/drawable_ic_launcher_background.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/drawable_ic_launcher_background.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-as_values-as.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-as_values-as.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-az_values-az.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-az_values-az.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-b+es+419_values-b+es+419.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-b+es+419_values-b+es+419.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-be_values-be.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-be_values-be.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-bn_values-bn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-bn_values-bn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-bs_values-bs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-bs_values-bs.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rAU_values-en-rAU.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-en-rAU_values-en-rAU.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rCA_values-en-rCA.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-en-rCA_values-en-rCA.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rXC_values-en-rXC.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-en-rXC_values-en-rXC.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-et_values-et.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-et_values-et.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-eu_values-eu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-eu_values-eu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-gl_values-gl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-gl_values-gl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-gu_values-gu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-gu_values-gu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hy_values-hy.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-hy_values-hy.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-is_values-is.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-is_values-is.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ka_values-ka.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ka_values-ka.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-kk_values-kk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-kk_values-kk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-km_values-km.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-km_values-km.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-kn_values-kn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-kn_values-kn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ky_values-ky.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ky_values-ky.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-large-v4_values-large-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-large-v4_values-large-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ldrtl-v17_values-ldrtl-v17.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ldrtl-v17_values-ldrtl-v17.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-lo_values-lo.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-lo_values-lo.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-mk_values-mk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-mk_values-mk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ml_values-ml.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ml_values-ml.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-mn_values-mn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-mn_values-mn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-mr_values-mr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-mr_values-mr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ms_values-ms.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ms_values-ms.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-my_values-my.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-my_values-my.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ne_values-ne.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ne_values-ne.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-night-v8_values-night-v8.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-night-v8_values-night-v8.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-or_values-or.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-or_values-or.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pa_values-pa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-pa_values-pa.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-port_values-port.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-port_values-port.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pt-rBR_values-pt-rBR.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-pt-rBR_values-pt-rBR.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-si_values-si.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-si_values-si.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-small-v4_values-small-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-small-v4_values-small-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sq_values-sq.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-sq_values-sq.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ta_values-ta.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ta_values-ta.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-te_values-te.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-te_values-te.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ur_values-ur.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-ur_values-ur.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-uz_values-uz.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-uz_values-uz.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v16_values-v16.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v16_values-v16.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v17_values-v17.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v17_values-v17.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v18_values-v18.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v18_values-v18.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v22_values-v22.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v22_values-v22.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v23_values-v23.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v23_values-v23.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v24_values-v24.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v24_values-v24.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v25_values-v25.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v25_values-v25.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v26_values-v26.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v26_values-v26.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v28_values-v28.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-v28_values-v28.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-watch-v20_values-watch-v20.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-watch-v20_values-watch-v20.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-watch-v21_values-watch-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-watch-v21_values-watch-v21.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values_values.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/merged_res/debug/values_values.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/navigation_json/debug/navigation.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /app/build/intermediates/processed_res/debug/out/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/com/shakbari/compose/App.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/intermediates/project_dex_archive/debug/out/com/shakbari/compose/App.dex -------------------------------------------------------------------------------- /app/build/intermediates/signing_config_versions/debug/signing-config-versions.json: -------------------------------------------------------------------------------- 1 | {"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false} -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | o -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | r -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 6 2 | 0 -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/compileDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | < -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStoragecom.shakbari.compose.App"!com.shakbari.compose.MainActivity -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorageandroid.app.Application$#androidx.activity.ComponentActivity -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 6 2 | 0 -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /app/build/outputs/apk/debug/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/outputs/apk/debug/app-debug.apk -------------------------------------------------------------------------------- /app/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin -------------------------------------------------------------------------------- /app/build/tmp/kapt3/incApCache/debug/apt-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/incApCache/debug/apt-cache.bin -------------------------------------------------------------------------------- /app/build/tmp/kapt3/incApCache/debug/classpath-entries.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/incApCache/debug/classpath-entries.bin -------------------------------------------------------------------------------- /app/build/tmp/kapt3/incApCache/debug/classpath-structure.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/incApCache/debug/classpath-structure.bin -------------------------------------------------------------------------------- /app/build/tmp/kapt3/incApCache/debug/java-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/incApCache/debug/java-cache.bin -------------------------------------------------------------------------------- /app/build/tmp/kapt3/incrementalData/debug/META-INF/app_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | B 3 | com.shakbari.compose.ui.themeColorKtShapeKtThemeKtTypeKt"* -------------------------------------------------------------------------------- /app/build/tmp/kapt3/incrementalData/debug/com/shakbari/compose/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/incrementalData/debug/com/shakbari/compose/App.class -------------------------------------------------------------------------------- /app/build/tmp/kapt3/incrementalData/debug/com/shakbari/compose/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/incrementalData/debug/com/shakbari/compose/MainActivity.class -------------------------------------------------------------------------------- /app/build/tmp/kapt3/incrementalData/debug/com/shakbari/compose/ui/theme/TypeKt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/incrementalData/debug/com/shakbari/compose/ui/theme/TypeKt.class -------------------------------------------------------------------------------- /app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/App.kapt_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/App.kapt_metadata -------------------------------------------------------------------------------- /app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/MainActivity.kapt_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/MainActivity.kapt_metadata -------------------------------------------------------------------------------- /app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/ui/theme/ColorKt.kapt_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/ui/theme/ColorKt.kapt_metadata -------------------------------------------------------------------------------- /app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/ui/theme/ShapeKt.kapt_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/ui/theme/ShapeKt.kapt_metadata -------------------------------------------------------------------------------- /app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/ui/theme/ThemeKt.kapt_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/ui/theme/ThemeKt.kapt_metadata -------------------------------------------------------------------------------- /app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/ui/theme/TypeKt.kapt_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kapt3/stubs/debug/com/shakbari/compose/ui/theme/TypeKt.kapt_metadata -------------------------------------------------------------------------------- /app/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java: -------------------------------------------------------------------------------- 1 | package error; 2 | 3 | public final class NonExistentClass { 4 | } -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/META-INF/app_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | B 3 | com.shakbari.compose.ui.themeColorKtShapeKtThemeKtTypeKt"* -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/com/shakbari/compose/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kotlin-classes/debug/com/shakbari/compose/App.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/com/shakbari/compose/LiveLiterals$AppKt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kotlin-classes/debug/com/shakbari/compose/LiveLiterals$AppKt.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/com/shakbari/compose/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kotlin-classes/debug/com/shakbari/compose/MainActivity.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/com/shakbari/compose/ui/theme/ColorKt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kotlin-classes/debug/com/shakbari/compose/ui/theme/ColorKt.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/com/shakbari/compose/ui/theme/ShapeKt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kotlin-classes/debug/com/shakbari/compose/ui/theme/ShapeKt.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/com/shakbari/compose/ui/theme/ThemeKt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kotlin-classes/debug/com/shakbari/compose/ui/theme/ThemeKt.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/com/shakbari/compose/ui/theme/TypeKt.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/build/tmp/kotlin-classes/debug/com/shakbari/compose/ui/theme/TypeKt.class -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | compose simple 3 | -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/build/.transforms/10abec9915f1c7ca9f09c34b75a33566/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /core/build/.transforms/29c2f635f731d93de72d14bdcff73338/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /core/build/.transforms/41cf0d71979c051fc7aedeacd9250133/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /core/build/.transforms/84e4be0b5c9949eb3ee71fd15f9847b5/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /core/build/.transforms/85496e62c4481f51f0d82431c7ac5a1e/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /core/build/.transforms/8cdd8049c614cff7c6bf7d030310b21c/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /core/build/.transforms/de0a3723986147583d34524143461113/results.bin: -------------------------------------------------------------------------------- 1 | o/classes 2 | -------------------------------------------------------------------------------- /core/build/intermediates/aar_metadata/debug/aar-metadata.properties: -------------------------------------------------------------------------------- 1 | aarFormatVersion=1.0 2 | aarMetadataVersion=1.0 3 | minCompileSdk=1 4 | -------------------------------------------------------------------------------- /core/build/intermediates/asm_instrumented_project_classes/debug/META-INF/core_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | * 3 | com.shakbari.core.extention ExtentionKt 4 | T 5 | com.shakbari.core.uikit.composeAvatarImageWithCoilKt ErrorViewKt LoadingViewKt"* -------------------------------------------------------------------------------- /core/build/intermediates/compile_library_classes_jar/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/intermediates/compile_library_classes_jar/debug/classes.jar -------------------------------------------------------------------------------- /core/build/intermediates/compile_r_class_jar/debug/R.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/intermediates/compile_r_class_jar/debug/R.jar -------------------------------------------------------------------------------- /core/build/intermediates/incremental/packageDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 13 14:37:29 IRDT 2022 2 | -------------------------------------------------------------------------------- /core/build/intermediates/javac/debug/classes/com/shakbari/core/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/intermediates/javac/debug/classes/com/shakbari/core/BuildConfig.class -------------------------------------------------------------------------------- /core/build/intermediates/library_java_res/debug/res.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/intermediates/library_java_res/debug/res.jar -------------------------------------------------------------------------------- /core/build/intermediates/local_only_symbol_list/debug/R-def.txt: -------------------------------------------------------------------------------- 1 | R_DEF: Internal format may change without notice 2 | local 3 | -------------------------------------------------------------------------------- /core/build/intermediates/navigation_json/debug/navigation.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /core/build/intermediates/runtime_library_classes_dir/debug/META-INF/core_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | * 3 | com.shakbari.core.extention ExtentionKt 4 | T 5 | com.shakbari.core.uikit.composeAvatarImageWithCoilKt ErrorViewKt LoadingViewKt"* -------------------------------------------------------------------------------- /core/build/intermediates/runtime_library_classes_jar/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/intermediates/runtime_library_classes_jar/debug/classes.jar -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | > -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage! com.shakbari.core.base.DataState! com.shakbari.core.base.DataState! com.shakbari.core.base.DataStateandroidx.lifecycle.ViewModel -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 12 2 | 0 -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage  2 |  -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/compileDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/compileDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | > -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorageandroidx.lifecycle.ViewModel! com.shakbari.core.base.DataState! com.shakbari.core.base.DataState! com.shakbari.core.base.DataState -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 12 2 | 0 -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage  2 |  -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- 1 | 2 | � -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- 1 | 2 |  -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len -------------------------------------------------------------------------------- /core/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /core/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin -------------------------------------------------------------------------------- /core/build/tmp/kapt3/incApCache/debug/apt-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kapt3/incApCache/debug/apt-cache.bin -------------------------------------------------------------------------------- /core/build/tmp/kapt3/incApCache/debug/classpath-entries.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kapt3/incApCache/debug/classpath-entries.bin -------------------------------------------------------------------------------- /core/build/tmp/kapt3/incApCache/debug/classpath-structure.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kapt3/incApCache/debug/classpath-structure.bin -------------------------------------------------------------------------------- /core/build/tmp/kapt3/incApCache/debug/java-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kapt3/incApCache/debug/java-cache.bin -------------------------------------------------------------------------------- /core/build/tmp/kapt3/incrementalData/debug/META-INF/core_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | * 3 | com.shakbari.core.extention ExtentionKt 4 | T 5 | com.shakbari.core.uikit.composeAvatarImageWithCoilKt ErrorViewKt LoadingViewKt"* -------------------------------------------------------------------------------- /core/build/tmp/kapt3/incrementalData/debug/com/shakbari/core/base/DataState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kapt3/incrementalData/debug/com/shakbari/core/base/DataState.class -------------------------------------------------------------------------------- /core/build/tmp/kapt3/incrementalData/debug/com/shakbari/core/di/RetrofitModule.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kapt3/incrementalData/debug/com/shakbari/core/di/RetrofitModule.class -------------------------------------------------------------------------------- /core/build/tmp/kapt3/stubs/debug/com/shakbari/core/base/DataState.kapt_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kapt3/stubs/debug/com/shakbari/core/base/DataState.kapt_metadata -------------------------------------------------------------------------------- /core/build/tmp/kapt3/stubs/debug/com/shakbari/core/di/RetrofitModule.kapt_metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kapt3/stubs/debug/com/shakbari/core/di/RetrofitModule.kapt_metadata -------------------------------------------------------------------------------- /core/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java: -------------------------------------------------------------------------------- 1 | package error; 2 | 3 | public final class NonExistentClass { 4 | } -------------------------------------------------------------------------------- /core/build/tmp/kotlin-classes/debug/META-INF/core_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | * 3 | com.shakbari.core.extention ExtentionKt 4 | T 5 | com.shakbari.core.uikit.composeAvatarImageWithCoilKt ErrorViewKt LoadingViewKt"* -------------------------------------------------------------------------------- /core/build/tmp/kotlin-classes/debug/com/shakbari/core/base/DataState$Error.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kotlin-classes/debug/com/shakbari/core/base/DataState$Error.class -------------------------------------------------------------------------------- /core/build/tmp/kotlin-classes/debug/com/shakbari/core/base/DataState$Loading.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kotlin-classes/debug/com/shakbari/core/base/DataState$Loading.class -------------------------------------------------------------------------------- /core/build/tmp/kotlin-classes/debug/com/shakbari/core/base/DataState$Success.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kotlin-classes/debug/com/shakbari/core/base/DataState$Success.class -------------------------------------------------------------------------------- /core/build/tmp/kotlin-classes/debug/com/shakbari/core/base/DataState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kotlin-classes/debug/com/shakbari/core/base/DataState.class -------------------------------------------------------------------------------- /core/build/tmp/kotlin-classes/debug/com/shakbari/core/di/RetrofitModule.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kotlin-classes/debug/com/shakbari/core/di/RetrofitModule.class -------------------------------------------------------------------------------- /core/build/tmp/kotlin-classes/debug/com/shakbari/core/di/utils/RetrofitConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/build/tmp/kotlin-classes/debug/com/shakbari/core/di/utils/RetrofitConfig.class -------------------------------------------------------------------------------- /core/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/core/consumer-rules.pro -------------------------------------------------------------------------------- /core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /core/src/main/java/com/shakbari/core/base/mvi/UiEffect.kt: -------------------------------------------------------------------------------- 1 | package com.shakbari.core.base.mvi 2 | 3 | interface UiEffect -------------------------------------------------------------------------------- /core/src/main/java/com/shakbari/core/base/mvi/UiIntent.kt: -------------------------------------------------------------------------------- 1 | package com.shakbari.core.base.mvi 2 | 3 | interface UiIntent -------------------------------------------------------------------------------- /core/src/main/java/com/shakbari/core/base/mvi/UiState.kt: -------------------------------------------------------------------------------- 1 | package com.shakbari.core.base.mvi 2 | 3 | interface UiState -------------------------------------------------------------------------------- /feature/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'java-library' 3 | id 'kotlin' 4 | } 5 | 6 | java { 7 | sourceCompatibility = JavaVersion.VERSION_1_7 8 | targetCompatibility = JavaVersion.VERSION_1_7 9 | } -------------------------------------------------------------------------------- /feature/details/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/details/build/.transforms/466566e5174808ca9a43c9ae0ad7fdff/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /feature/details/build/.transforms/958411269650ea92f582185606e1e3e3/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /feature/details/build/.transforms/ab48d36b89bd2b3487f4e57537d23230/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /feature/details/build/.transforms/c7fcc85d32dd90892d5c05deba943454/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /feature/details/build/.transforms/eb5ec05aa07a73065ba4ef7a7e97adc7/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /feature/details/build/.transforms/f2a5c6f83433aede013d2de1ec53ccd0/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /feature/details/build/.transforms/fa61c4f4a35e70d46c7262b8cc87305c/results.bin: -------------------------------------------------------------------------------- 1 | o/classes 2 | -------------------------------------------------------------------------------- /feature/details/build/intermediates/aar_metadata/debug/aar-metadata.properties: -------------------------------------------------------------------------------- 1 | aarFormatVersion=1.0 2 | aarMetadataVersion=1.0 3 | minCompileSdk=1 4 | -------------------------------------------------------------------------------- /feature/details/build/intermediates/asm_instrumented_project_classes/debug/META-INF/details_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | ' 3 | com.shakbari.detailsDetailsScreenKt 4 | 5 5 | com.shakbari.details.navigationDetailsNavModuleKt"* -------------------------------------------------------------------------------- /feature/details/build/intermediates/compile_library_classes_jar/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/intermediates/compile_library_classes_jar/debug/classes.jar -------------------------------------------------------------------------------- /feature/details/build/intermediates/compile_r_class_jar/debug/R.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/intermediates/compile_r_class_jar/debug/R.jar -------------------------------------------------------------------------------- /feature/details/build/intermediates/incremental/packageDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 13 14:37:29 IRDT 2022 2 | -------------------------------------------------------------------------------- /feature/details/build/intermediates/library_java_res/debug/res.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/intermediates/library_java_res/debug/res.jar -------------------------------------------------------------------------------- /feature/details/build/intermediates/local_only_symbol_list/debug/R-def.txt: -------------------------------------------------------------------------------- 1 | R_DEF: Internal format may change without notice 2 | local 3 | -------------------------------------------------------------------------------- /feature/details/build/intermediates/navigation_json/debug/navigation.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /feature/details/build/intermediates/runtime_library_classes_dir/debug/META-INF/details_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | ' 3 | com.shakbari.detailsDetailsScreenKt 4 | 5 5 | com.shakbari.details.navigationDetailsNavModuleKt"* -------------------------------------------------------------------------------- /feature/details/build/intermediates/runtime_library_classes_jar/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/intermediates/runtime_library_classes_jar/debug/classes.jar -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 3 2 | 0 -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len -------------------------------------------------------------------------------- /feature/details/build/kotlin/compileDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/compileDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 3 2 | 0 -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /feature/details/build/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt: -------------------------------------------------------------------------------- 1 | com/shakbari/details/BuildConfig.java 2 | com.shakbari.details.BuildConfig 3 | -------------------------------------------------------------------------------- /feature/details/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin -------------------------------------------------------------------------------- /feature/details/build/tmp/kapt3/incApCache/debug/apt-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/tmp/kapt3/incApCache/debug/apt-cache.bin -------------------------------------------------------------------------------- /feature/details/build/tmp/kapt3/incApCache/debug/classpath-entries.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/tmp/kapt3/incApCache/debug/classpath-entries.bin -------------------------------------------------------------------------------- /feature/details/build/tmp/kapt3/incApCache/debug/classpath-structure.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/tmp/kapt3/incApCache/debug/classpath-structure.bin -------------------------------------------------------------------------------- /feature/details/build/tmp/kapt3/incApCache/debug/java-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/build/tmp/kapt3/incApCache/debug/java-cache.bin -------------------------------------------------------------------------------- /feature/details/build/tmp/kapt3/incrementalData/debug/META-INF/details_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | ' 3 | com.shakbari.detailsDetailsScreenKt 4 | 5 5 | com.shakbari.details.navigationDetailsNavModuleKt"* -------------------------------------------------------------------------------- /feature/details/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java: -------------------------------------------------------------------------------- 1 | package error; 2 | 3 | public final class NonExistentClass { 4 | } -------------------------------------------------------------------------------- /feature/details/build/tmp/kotlin-classes/debug/META-INF/details_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | ' 3 | com.shakbari.detailsDetailsScreenKt 4 | 5 5 | com.shakbari.details.navigationDetailsNavModuleKt"* -------------------------------------------------------------------------------- /feature/details/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/details/consumer-rules.pro -------------------------------------------------------------------------------- /feature/details/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /feature/home/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/home/build/.transforms/42f81c6311666ae1934deba4f3bfa1ec/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /feature/home/build/.transforms/4ecc72d5ae039a35a60bdd80d595b78a/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /feature/home/build/.transforms/67721a80cc13d484cb434369fda357b4/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /feature/home/build/.transforms/93efbff8b5781150b2ea17744006fac0/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /feature/home/build/.transforms/983e687b124501d0986e8819be80e308/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /feature/home/build/.transforms/9e7a69524cdc53c1f37951d4ac35f9b5/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /feature/home/build/.transforms/a2800593796a5ef77a3cb271b32136f4/results.bin: -------------------------------------------------------------------------------- 1 | o/classes 2 | -------------------------------------------------------------------------------- /feature/home/build/intermediates/aar_metadata/debug/aar-metadata.properties: -------------------------------------------------------------------------------- 1 | aarFormatVersion=1.0 2 | aarMetadataVersion=1.0 3 | minCompileSdk=1 4 | -------------------------------------------------------------------------------- /feature/home/build/intermediates/asm_instrumented_project_classes/debug/META-INF/home_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | 6 3 | #com.shakbari.home.common.navigationHomeNavModuleKt 4 | 1 5 | !com.shakbari.home.presentation.ui HomeScreenKt"* -------------------------------------------------------------------------------- /feature/home/build/intermediates/compile_library_classes_jar/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/intermediates/compile_library_classes_jar/debug/classes.jar -------------------------------------------------------------------------------- /feature/home/build/intermediates/compile_r_class_jar/debug/R.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/intermediates/compile_r_class_jar/debug/R.jar -------------------------------------------------------------------------------- /feature/home/build/intermediates/library_java_res/debug/res.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/intermediates/library_java_res/debug/res.jar -------------------------------------------------------------------------------- /feature/home/build/intermediates/local_only_symbol_list/debug/R-def.txt: -------------------------------------------------------------------------------- 1 | R_DEF: Internal format may change without notice 2 | local 3 | drawable ic_android_black_24dp 4 | -------------------------------------------------------------------------------- /feature/home/build/intermediates/navigation_json/debug/navigation.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /feature/home/build/intermediates/runtime_library_classes_dir/debug/META-INF/home_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | 6 3 | #com.shakbari.home.common.navigationHomeNavModuleKt 4 | 1 5 | !com.shakbari.home.presentation.ui HomeScreenKt"* -------------------------------------------------------------------------------- /feature/home/build/intermediates/runtime_library_classes_jar/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/intermediates/runtime_library_classes_jar/debug/classes.jar -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | e -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | e -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- 1 | p -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | l -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 18 2 | 0 -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage  2 |     -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len -------------------------------------------------------------------------------- /feature/home/build/kotlin/compileDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/compileDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | e -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | e -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | h -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- 1 | p -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | l -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 18 2 | 0 -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage  2 |     -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- 1 | d -------------------------------------------------------------------------------- /feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /feature/home/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin -------------------------------------------------------------------------------- /feature/home/build/tmp/kapt3/incApCache/debug/apt-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/tmp/kapt3/incApCache/debug/apt-cache.bin -------------------------------------------------------------------------------- /feature/home/build/tmp/kapt3/incApCache/debug/classpath-entries.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/tmp/kapt3/incApCache/debug/classpath-entries.bin -------------------------------------------------------------------------------- /feature/home/build/tmp/kapt3/incApCache/debug/classpath-structure.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/tmp/kapt3/incApCache/debug/classpath-structure.bin -------------------------------------------------------------------------------- /feature/home/build/tmp/kapt3/incApCache/debug/java-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/build/tmp/kapt3/incApCache/debug/java-cache.bin -------------------------------------------------------------------------------- /feature/home/build/tmp/kapt3/incrementalData/debug/META-INF/home_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | 6 3 | #com.shakbari.home.common.navigationHomeNavModuleKt 4 | 1 5 | !com.shakbari.home.presentation.ui HomeScreenKt"* -------------------------------------------------------------------------------- /feature/home/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java: -------------------------------------------------------------------------------- 1 | package error; 2 | 3 | public final class NonExistentClass { 4 | } -------------------------------------------------------------------------------- /feature/home/build/tmp/kotlin-classes/debug/META-INF/home_debug.kotlin_module: -------------------------------------------------------------------------------- 1 |  2 | 6 3 | #com.shakbari.home.common.navigationHomeNavModuleKt 4 | 1 5 | !com.shakbari.home.presentation.ui HomeScreenKt"* -------------------------------------------------------------------------------- /feature/home/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/feature/home/consumer-rules.pro -------------------------------------------------------------------------------- /feature/home/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /feature/home/src/main/java/com/shakbari/home/common/api/HomeApiHelper.kt: -------------------------------------------------------------------------------- 1 | package com.shakbari.home.common.api 2 | 3 | import com.shakbari.home.domain.entity.User 4 | 5 | interface HomeApiHelper { 6 | suspend fun getUsers(): ArrayList 7 | } -------------------------------------------------------------------------------- /feature/home/src/main/java/com/shakbari/home/domain/entity/User.kt: -------------------------------------------------------------------------------- 1 | package com.shakbari.home.domain.entity 2 | 3 | data class User( 4 | val avatar: String = "", 5 | val email: String = "", 6 | val id: String = "", 7 | val name: String = "Hossein" 8 | ) -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /navigation/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /navigation/build/.transforms/52125eebbae250eacf7eb04806340e71/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /navigation/build/.transforms/531026474339a21b2040cba2b7ab8b24/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /navigation/build/.transforms/628c2602a6e244c7ae508eba76c4d150/results.bin: -------------------------------------------------------------------------------- 1 | o/classes 2 | -------------------------------------------------------------------------------- /navigation/build/.transforms/80c70b9876463ed617f4cfa106b99fee/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /navigation/build/.transforms/9ce86e359da7a55994f3d4d6e14acf87/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /navigation/build/.transforms/b5fc95c74f3d7cb5e6a62a7f3afbfe32/results.bin: -------------------------------------------------------------------------------- 1 | o/debug 2 | -------------------------------------------------------------------------------- /navigation/build/.transforms/daa7a6f239ef4d211aa363679a2389fb/results.bin: -------------------------------------------------------------------------------- 1 | i/ 2 | -------------------------------------------------------------------------------- /navigation/build/intermediates/aar_metadata/debug/aar-metadata.properties: -------------------------------------------------------------------------------- 1 | aarFormatVersion=1.0 2 | aarMetadataVersion=1.0 3 | minCompileSdk=1 4 | -------------------------------------------------------------------------------- /navigation/build/intermediates/annotation_processor_list/debug/annotationProcessors.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /navigation/build/intermediates/compile_library_classes_jar/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/intermediates/compile_library_classes_jar/debug/classes.jar -------------------------------------------------------------------------------- /navigation/build/intermediates/compile_r_class_jar/debug/R.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/intermediates/compile_r_class_jar/debug/R.jar -------------------------------------------------------------------------------- /navigation/build/intermediates/incremental/packageDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 13 14:37:29 IRDT 2022 2 | -------------------------------------------------------------------------------- /navigation/build/intermediates/library_java_res/debug/res.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/intermediates/library_java_res/debug/res.jar -------------------------------------------------------------------------------- /navigation/build/intermediates/local_only_symbol_list/debug/R-def.txt: -------------------------------------------------------------------------------- 1 | R_DEF: Internal format may change without notice 2 | local 3 | -------------------------------------------------------------------------------- /navigation/build/intermediates/navigation_json/debug/navigation.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /navigation/build/intermediates/runtime_library_classes_jar/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/intermediates/runtime_library_classes_jar/debug/classes.jar -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len: -------------------------------------------------------------------------------- 1 | @ -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | @ -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorageiAPP_GRAPH_NAME MultiNavigationGraph.AppNavGraph -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len: -------------------------------------------------------------------------------- 1 | E -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- 1 | O -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | F -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 21 2 | 0 -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- 1 | � -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- 1 | /Header Record For PersistentHashMapValueStorage  2 |     -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- 1 | *' -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- 1 | & -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len -------------------------------------------------------------------------------- /navigation/build/kotlin/compileDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/kotlin/compileDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /navigation/build/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt: -------------------------------------------------------------------------------- 1 | com/shakbari/navigation/BuildConfig.java 2 | com.shakbari.navigation.BuildConfig 3 | -------------------------------------------------------------------------------- /navigation/build/tmp/kotlin-classes/debug/com/shakbari/navigation/Screen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/build/tmp/kotlin-classes/debug/com/shakbari/navigation/Screen.class -------------------------------------------------------------------------------- /navigation/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakbari435/MultiModuleMVIArchitecture/33695de16029069cc8bca727c2a1651960e8bab5/navigation/consumer-rules.pro -------------------------------------------------------------------------------- /navigation/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | --------------------------------------------------------------------------------