RxAndroid2+RxLifecycle2+Retrofit2 依賴引入和衝突分析

weixin_34138377發表於2017-10-24

2017.10.23日使用各個版本最新的依賴分析

使用最新版本中做測試,每個依賴都會自己包含其他依賴,有些自己會包含其他,所以可以不需要引入也行。下面分析每個依賴自帶哪些版本號的資訊

一、retrofit:2.3.0

  1. 單獨使用retrofit:

     compile "com.squareup.retrofit2:retrofit:2.3.0"
    
  2. 使用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的聯結器。
    
  3. 使用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

  1. RxAndroid

     compile 'io.reactivex.rxjava2:rxandroid:2.0.1"
    
     * reactive-streams-1.0.0
     * rxandroid:2.0.8
     * rxjava:2.0.8
    
  2. RxJava

     compile "io.reactivex.rxjava2:rxjava:2.1.5"  控制最新版本號
    

三、RxLifecycle

  1. rxlifecycle-components:2.1.0

    問題:使用2.2.0版本,
    compile'com.android.support:appcompat-v7:26.+' 需要設定26的版本
    buildToolsVersion"26.0.0" 也需要設定26

    嘗試解決方案:

    1. 使用舊版2.1.0,可以使用compile'com.android.support:appcompat-v7:25.3.1'

    2. 使用舊版2.2.0 使用新版本compile'com.android.support:appcompat-v7:26.0.2'
      buildToolsVersion"26.0.0" (不過appcompat-v7:26.0.2'一直下載不了,有待驗證)

    3. 使用新版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)

  1. 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"

最終引入目錄

4978076-2beeb16ebc09dc45.png
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'

相關文章