gpt4 book ai didi

firebase - Dagger 2 @Inject 上的空引用

转载 作者:行者123 更新时间:2023-12-01 12:29:06 24 4
gpt4 key购买 nike

我创建了一个 gist突出我遇到的问题。我正在使用一个应用程序模块来提供一个 Firebase 依赖项,以便我在其他地方注入(inject)。

当我尝试在数据层中@Inject Firebase mFirebase 时,永远不会满足依赖关系。

我试图将 Context 排除在我的其他层之外,但 Firebase 服务依赖于它。我有兴趣学习任何其他模式以帮助将 Android 类排除在我的业务逻辑之外。

FirebaseService.java

public class FirebaseService {

@Inject Firebase mFirebaseRef; //NEVER GET'S INJECTED!

@Override
public LoginResult signinWithEmail(final String email, final String password) {
mFirebaseRef.dostuff(); //THIS REFERENCE DOESN'T GET INJECTED!
}
}

应用模块

@Provides
@Singleton
Firebase provideFirebase(@ApplicationContext Context context) {
Firebase.setAndroidContext(context);
return new Firebase(Util.FIREBASE_URL);
}

应用组件

@Singleton
@Component(modules = ApplicationModule.class)
public interface ApplicationComponent {

@ApplicationContext Context context();
Application application();
Firebase firebase();
}

我的事件

public class MyActivity extends AppCompatActivity {

private ActivityComponent mActivityComponent;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}

public ActivityComponent getActivityComponent() {
if (mActivityComponent == null) {
mActivityComponent = DaggerActivityComponent.builder()
.activityModule(new ActivityModule(this))
.applicationComponent(MyApplication.get(this).getComponent())
.build();
}
return mActivityComponent;
}

完整的代码示例在 github

最佳答案

使用 @Inject 注释字段不足以使字段注入(inject)起作用。不涉及魔法,您只需告诉 Dagger 进行注入(inject)即可。

首先,将此方法添加到您的ApplicationComponent:

void inject(FirebaseService firebaseService);

然后,从您的 FirebaseService 调用此方法(我猜这是一个 Android 服务,所以将其添加到 onCreate 方法):

applicationComponent.inject(this);

这应该可以解决问题。类似问题有很好的答案 here .

编辑

我查看了您的存储库,我认为在这种情况下您甚至不需要字段注入(inject)。您可以只通过构造函数提供 Firebase 依赖项。这是您的 @Provides 方法:

@Provides
@Singleton
LoginService provideLoginService() {
return new FirebaseLoginService();
}

Firebase 作为参数添加到它,并将其传递给 FirebaseLoginService 构造函数:

@Provides
@Singleton
LoginService provideLoginService(Firebase firebase) {
return new FirebaseLoginService(firebase);
}

构造函数:

public FirebaseLoginService(Firebase firebase) {
this.mFirebaseRef = firebase;
}

mFirebaseRef 字段中删除 @Inject 注释,因为它不再需要了。

这里是对应的pull request .

关于firebase - Dagger 2 @Inject 上的空引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36268308/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com