美文网首页
dagger2专题2:环境搭建

dagger2专题2:环境搭建

作者: 这里的山路十八弯 | 来源:发表于2017-11-07 18:21 被阅读25次

    如果想使用Dagger2,需要在项目module的build.gradle中添加以下配置

    dependencies {
        //dagger2的注解编译工具,原使用apt导入,gradle2.2后使用annotationProcessor
        annotationProcessor "com.google.dagger:dagger-compiler:2.0"
        //使用注解的依赖
        implementation 'org.glassfish:javax.annotation:10.0-b28'
        //dagger2的依赖
        implementation 'com.google.dagger:dagger:2.0'
    }
    

    Dagger2是依靠注解来运作,所以以下依赖一定要添加

    implementation 'org.glassfish:javax.annotation:10.0-b28'
    

    环境配置完毕。

    相关文章

      网友评论

          本文标题:dagger2专题2:环境搭建

          本文链接:https://www.haomeiwen.com/subject/bdgdmxtx.html