问题描述
我想知道如何使用 Koin 库正确确定依赖范围。
自从 Google 推荐 single Activity
architecture 以来,AndroidX Navigation lib 已成为通过轻松交换 Fragment
来促进这一点的关键库。
典型的现代 Android 应用在包和/或 Gradle
模块中分离了多个功能。
这些功能模块提供了一个可以在根图中用作嵌套图的图。 (见图)
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/root_graph"
app:startDestination="@id/mainFragment">
<include app:graph="@navigation/nav_graph_feature_a" />
<include app:graph="@navigation/nav_graph_feature_b" />
<fragment
android:id="@+id/mainFragment"
android:name="com.example.androidx_navigation.MainFragment"
android:label="MainFragment"
tools:layout="@layout/fragment_main">
<action
android:id="@+id/action_mainFragment_to_featureAFragment1"
app:destination="@id/nav_graph_feature_a" />
<action
android:id="@+id/action_mainFragment_to_featureBFragment1"
app:destination="@id/nav_graph_feature_b" />
</fragment>
</navigation>
应遵守以下规则:
更具体地说:
- FeatureA 可以注入 Activity 和 App 依赖项,但不能注入 FeatureB 依赖项
- FeatureB 可以注入 Activity 和 App 依赖项,但不能注入 FeatureA 依赖项
如何在 Koin 中实现这一点?
请注意,共享依赖项不仅限于 viewmodel。
我应该能够在我的范围内共享任何任意类。
解决方法
实际上,我认为您可以在功能模块中使用 loadModule
和 unLoadModule
,并使用一些层模块,例如 network
uiKit
和 ... 控制他们的需求。
FeatureA can inject Activity and App dependencies,but not FeatureB dependencies
我认为在 FeatueA 中注入您的 appModule 是不合理的,您可以有一个 coreModule
并将其添加到您需要的所有模块中,您也可以在您的 requireActivity()
中找到您的活动Fragmnet 例如:D,所以 FeatureA 永远不能注入 FeatureB 依赖项,因为它们无法相互访问。