0

在尝试定义将使用我的注入的类时,我似乎无法使用注入这个词。

这是我的 MainModule.java 类:

import dagger.Module;
import dagger.Provides;


@Module()
public class MainModule {

    private Context context;

    public MainModule(Context context) {
        this.context = context;
    }


    @Provides
    Object provideSomething(Context context) {
        return new Object();
    }
}



@Module()
 class SubModule1 {

    private Context context;

    public SubModule1(Context context) {
        this.context = context;
    }

    @Provides
    Object provideSomethingElse(Context context) {
        return new Object();
    }
}

这是我在 android 中扩展应用程序的 MainApplication 类:

public class MainApplication extends Application {

    private ObjectGraph objectGraph;


    @Override
    public void onCreate() {
        super.onCreate();
        objectGraph = ObjectGraph.create(new MainModule(this));
        objectGraph = ObjectGraph.create(new SubModule1(this));
        objectGraph = ObjectGraph.create(new ActivityModule());
        objectGraph.inject(this);
}
    }

这是我在下面遇到的问题,android studio 看不到 injects 关键字,所以我无法使用它。

ActivityModule.java 类如下:

@Module(
        injects=
                ListPageActivity.class

) 
public class ActivityModule { }

同样,它在我的 IDE 中无法识别的 ActiveModule 中的注入关键字。这是我的 gradle 构建依赖项:

dependencies {
    compile files('libs/volley.jar')
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.0'
    compile 'com.android.support:recyclerview-v7:21.0.0'
    compile 'com.android.support:cardview-v7:21.0.0'
    compile 'com.jakewharton:butterknife:6.0.0'
    compile 'com.squareup:dagger:0.9.1'

}
4

2 回答 2

1

如果需要使用 0.9.1 版本,请改用entryPoints关键字。那是因为injects被重命名entryPoints并存在于较新的版本中。

我建议你使用 Square 的最后一个 1.2.2 版本,它有injects
http ://square.github.io/dagger/

apt "com.squareup.dagger:dagger-compiler:1.2.2"
compile "com.squareup.dagger:dagger:1.2.2"

或者来自 Google 的最新 Dagger 2。它仍然是快照,但我希望不会太久。:http:
//google.github.io/dagger/

apt "com.google.dagger:dagger-compiler:2.0-SNAPSHOT"
compile "com.google.dagger:dagger:2.0-SNAPSHOT"
于 2014-12-19T10:44:15.230 回答
0

更改您的匕首版本。使用发布的代码对我来说一切似乎都很好。

compile 'com.squareup.dagger:dagger:1.2.2'

组 ID 已更改,因此知道您可以在此处的 maven Central 上找到该项目

于 2014-12-19T05:26:14.323 回答