2017.10.23日使用各个版本最新的依赖分析
- https://github.com/ReactiveX/RxJava
- https://github.com/ReactiveX/RxAndroid
- https://github.com/trello/RxLifecycle
- https://github.com/square/retrofit
- https://github.com/google/dagger
使用最新版本中做测试,每个依赖都会自己包含其他依赖,有些自己会包含其他,所以可以不需要引入也行。下面分析每个依赖自带哪些版本号的信息
一、retrofit:2.3.0
-
单独使用retrofit:
compile "com.squareup.retrofit2:retrofit:2.3.0"
-
使用adapter-rxjava连接器 - 默认自带了retrofit和rxjava 使用rxjava2.0需要连接器
compile"com.squareup.retrofit2:adapter-rxjava2:2.3.0" * okio-1.13.0 * reactive-streams-1.0.0 * retrofit-2.3.0 * rxjava-2.0.0 * adapter-rxjava2-2.3.0 retrofit和rxjava的连接器。
-
使用converter-gson解析器 - GsonConverterFactory
"com.squareup.retrofit2:converter-gson:2.3.0" //解析器 * okio-1.13.0 * reactive-streams-1.0.0 * okhttp-3.8.0 * gson-2.7 * converter-gson-2.3.0 GsonConverterFactory解析器 * retrofit-2.3.0默认自带了retrofit所以可以不用引入retrofit
结论
如果使用retrofit + rxjava ,只引用2个就够,因为自动会引用retrofit:2.3.0
compile"com.squareup.retrofit2:adapter-rxjava2:2.3.0" //连接器
compile"com.squareup.retrofit2:converter-gson:2.3.0" //解析器
PS:
连接器还有另外一种方式,这是官方adapter-rxjava2连接器还没出时,由jakewharton写的一个retrofit2和rxandroid2的一个连接器retrofit2-rxjava2-adapter.不过建议还是写官方的好
retrofit2-rxjava2-adapter:1.0.0
compile "com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0"
* okhttp-3.3.0
* okio-1.8.0
* reactive-streams-1.0.0
* retrofit2-rxjava2-adapter-1.0.0
* retrofit-2.1.0
* rxjava-2.0.0
二、RxAndroid2.0.1 Rxjava2.1.5
-
RxAndroid
compile 'io.reactivex.rxjava2:rxandroid:2.0.1" * reactive-streams-1.0.0 * rxandroid:2.0.8 * rxjava:2.0.8
-
RxJava
compile "io.reactivex.rxjava2:rxjava:2.1.5" 控制最新版本号
三、RxLifecycle
-
rxlifecycle-components:2.1.0
问题:使用2.2.0版本,
compile'com.android.support:appcompat-v7:26.+' 需要设置26的版本
buildToolsVersion"26.0.0" 也需要设置26尝试解决方案:
-
使用旧版2.1.0,可以使用compile'com.android.support:appcompat-v7:25.3.1'
-
使用旧版2.2.0 使用新版本compile'com.android.support:appcompat-v7:26.0.2'
buildToolsVersion"26.0.0" (不过appcompat-v7:26.0.2'一直下载不了,有待验证) -
使用新版2.2.0 剔除自带的appcompat-v7 使用compile 'com.android.support:appcompat-v7:+'自带最新版本,目前是26.0.0-alpha1
compile ("com.trello.rxlifecycle2:rxlifecycle-components:2.2.0") { exclude group:'com.android.support', module:'appcompat-v7' }
注意剔除的写法,需要(){ }
不过他自己还需要自带其他依赖。这种方式也不行。
所以目前只能使用2.1.0版本引入rxlifecycle-components 自带了rxlifecycle 所以下面的rxlifecycle如果版本号不变 可以不引入compile "com.trello.rxlifecycle2:rxlifecycle-components:2.1.0" * reactive-streams-1.0.1 * rxandroid:2.0.1 * rxjava:2.1.1 * rxlifecycle:2.1.0 * rxlifecycle-android:2.1.0 * rxlifecycle-components:2.1.0
这个包含了很多最基本的rxandroid + rxjava + rxlifecycle等。所以理论上使用这个就包含了第二大点的引入(RxJava RxAndroid)
-
-
rxlifecycle:2.2.0
compile "com.trello.rxlifecycle2:rxlifecycle:2.2.0" * reactive-streams-1.0.1 * rxjava:2.1.0 * rxlifecycle:2.1.0
结论
可以整理依赖引入为:
//retrofit
compile"com.squareup.retrofit2:retrofit:2.3.0"//adapter-rxjava2和converter-gson都引入了retrofit2,这个可以去掉
compile"com.squareup.retrofit2:adapter-rxjava2:2.3.0"//连接器
compile"com.squareup.retrofit2:converter-gson:2.3.0"//解析器 包含okhttp、gson等
//rxjava rxandroid
compile"io.reactivex.rxjava2:rxjava:2.1.5"
compile"io.reactivex.rxjava2:rxandroid:2.0.1"//本身也自带rxjava
//rxlifecycle
compile"com.trello.rxlifecycle2:rxlifecycle:2.1.0"//rxlifecycle-components已经引入了,这个可以去掉
compile"com.trello.rxlifecycle2:rxlifecycle-components:2.1.0"
最终引入目录
QQ图片20171024094513.png四、dagger
如果你 AndroidStudio 的 gradle build tool 版本在 2.2 以上,直接在引进就好了
dependencies {
compile 'com.google.dagger:dagger:2.12' //dagger-2.12 javax.inject-1
annotationProcessor 'com.google.dagger:dagger-compiler:2.12'
}
##官方说明##
dependencies {
compile 'com.google.dagger:dagger:2.x'
annotationProcessor 'com.google.dagger:dagger-compiler:2.x' //指定注解处理器
}
If you're using classes in dagger.android you'll also want to include:
compile 'com.google.dagger:dagger-android:2.x'
// 如果引用了v7等library
//包含了dagger-2.12 javax.inject-1 dagger-android-2.12 jsr305-3.01
compile 'com.google.dagger:dagger-android-support:2.x'
annotationProcessor 'com.google.dagger:dagger-android-processor:2.x'
如果你的 gradle build tool 版本在 2.2 以下,则需要引进 apt 插件。
首先需要在 Project 层级的 build.gradle 文件中引入依赖
buildscript {
repositories {
mavenCentral()
}
}
dependencies {
// replace with the current version of the Android plugin
classpath 'com.android.tools.build:gradle:2.1.0'
// the latest version of the android-apt plugin
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
然后在 Module 层级的 build.gradle 引入相应的插件和依赖
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
dependencies {
apt 'com.squareup.dagger:dagger-compiler:2.4'
compile 'com.squareup.dagger:dagger:2.4'
compile 'com.google.dagger:dagger-android-support:2.4'
compile 'org.glassfish:javax.annotation:10.0-b28' //android 缺失的java注解
最终依赖
//add on 2017.10.23
//retrofit
compile "com.squareup.retrofit2:retrofit:2.3.0" //adapter-rxjava2和converter-gson都引入了retrofit2,这个可以去掉
compile"com.squareup.retrofit2:converter-gson:2.3.0" //解析器 主要处理具体对象、jsonObject、jsonArray 包含okhttp、gson等 自带retrofit:2.3.0
compile"com.squareup.retrofit2:converter-scalars:2.3.0" //解析器 处理String boolean 等基本类型 包含okhttp、gson等 自带retrofit:2.3.0
//rxjava rxandroid
compile "io.reactivex.rxjava2:rxjava:2.1.5"
compile "io.reactivex.rxjava2:rxandroid:2.0.1" //本身也自带rxjava
//rxlifecycle
compile "com.trello.rxlifecycle2:rxlifecycle:2.1.0" //rxlifecycle-components已经引入了,这个可以去掉
compile "com.trello.rxlifecycle2:rxlifecycle-components:2.1.0"
//dagger2
compile 'com.google.dagger:dagger:2.12'
annotationProcessor 'com.google.dagger:dagger-compiler:2.12'
精简依赖
//add on 2017.10.23
//retrofit
compile"com.squareup.retrofit2:adapter-rxjava2:2.3.0" //连接器 , 自带retrofit2:2.3.0
compile"com.squareup.retrofit2:converter-gson:2.3.0" //解析器 主要处理具体对象、jsonObject、jsonArray 包含okhttp、gson等 自带retrofit:2.3.0
compile"com.squareup.retrofit2:converter-scalars:2.3.0" //解析器 处理String boolean 等基本类型 包含okhttp、gson等 自带retrofit:2.3.0
//rxjava rxandroid
compile "io.reactivex.rxjava2:rxjava:2.1.5"
compile "io.reactivex.rxjava2:rxandroid:2.0.1" //本身也自带rxjava
//rxlifecycle
compile "com.trello.rxlifecycle2:rxlifecycle-components:2.1.0" //自带rxlifecycle:2.1.0
//dagger2
compile 'com.google.dagger:dagger:2.12'
annotationProcessor 'com.google.dagger:dagger-compiler:2.12'
网友评论