Dagger2依赖 – Gradle
我试图添加Dagger2到我的项目在Android Studio中,但我找不到适当的依赖项粘贴在build.gradle。 你能帮忙,给我正确的路线?
在Android Studio 2上安装Dagger 2
// Application build.gradle dependencies { compile 'com.google.dagger:dagger:2.4' annotationProcessor "com.google.dagger:dagger-compiler:2.4" }
Maven知识库:
在Maven Repository中查找上述依赖关系的最新版本:
- 匕首
- 匕首编译
注意:Android Studio <2.2
Android Studio的旧版本需要android-apt
进行注释处理。
// Project build.gradle buildscript { dependencies { // Assists in working with annotation processors for Android Studio. // No longer needed with Android Studio 2.2+ classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4' } } apply plugin: 'com.neenbedankt.android-apt'
和
// Application build.gradle dependencies { compile 'com.google.dagger:dagger:2.4' apt "com.google.dagger:dagger-compiler:2.4" }
注:匕首<2.1
对于Dagger <2.1-SNAPSHOT,在Dagger生成的代码中使用@Generated
注释需要javax.annotation
(请参阅github.com/google/dagger/issues/95 )。 该注释不包含在Android API jar中,因此您需要使用这些库中的一个( 请参阅区别 ):
// Application build.gradle dependencies { compile 'javax.annotation:jsr250-api:1.0' }
- javax.annotation中:JSR250-API:1.0
- javax.annotation中:javax.annotation中-API:1.2
- org.glassfish:javax.annotation中:10.0-B28
您不再需要android-apt插件 ,以前由android-apt提供的所有function现在都可以在Android Gradle插件2.2
https://bitbucket.org/hvisser/android-apt/wiki/Migration
更新Gradle插件
classpath 'com.android.tools.build:gradle:2.2.0'
和Dagger的依赖关系
compile 'com.google.dagger:dagger:2.4' annotationProcessor 'com.google.dagger:dagger-compiler:2.4'
干杯!
dependencies { compile 'com.google.dagger:dagger:2.0-SNAPSHOT' }
在你的应用程序/ build.gradle
和
allprojects { repositories { ... maven { url "https://oss.sonatype.org/content/repositories/snapshots" } } }
在你的项目build.gradle。
今天早些时候我遇到了一些麻烦。 以下是使用Android Studio 2.0预览版8截至目前为止最新版本的最新版本:
buid.gradle(模块:应用程序)
apply plugin: 'com.android.application' apply plugin: 'com.neenbedankt.android-apt' android { compileSdkVersion 23 buildToolsVersion '23.0.2' defaultConfig { applicationId 'com.example.android.redacted.app' minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } repositories { mavenCentral() } productFlavors { } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.google.dagger:dagger:2.0.2' apt 'com.google.dagger:dagger-compiler:2.0.2' provided 'org.glassfish:javax.annotation:10.0-b28' }
build.gradle(Project:proj):
buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.0.0-alpha8' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' } } allprojects { repositories { jcenter() mavenCentral() maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } } }