自己依赖笔记


configurations.all {



    resolutionStrategy.eachDependency { DependencyResolveDetails details ->

        def requested = details.requested

        if (requested.group == 'com.android.support') {

            if (!requested.name.startsWith("multidex")) {

                details.useVersion '27.1.1'

            }

        }

    }

}

implementation 'com.google.code.gson:gson:2.2.4'

implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' 

implementation 'com.github.userswlwork:pull-to-refresh:1.0.0'

implementation  'com.squareup.okhttp3:okhttp:3.10.0'

implementation   'com.android.support:recyclerview-v7:26.1.0'

implementation  'com.youth.banner:banner:1.4.9'

implementation 'com.facebook.fresco:fresco:1.9.0'

implementation 'com.facebook.fresco:animated-base-support:1.9.0'

implementation 'com.facebook.fresco:animated-gif:1.9.0'

implementation 'com.facebook.fresco:animated-webp:1.9.0'

implementation 'com.facebook.fresco:webpsupport:1.9.0'

implementation 'com.facebook.fresco:webpsupport:1.9.0'

implementation 'org.greenrobot:eventbus:3.1.1'

implementation 'com.jakewharton:butterknife:8.8.1'

annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'

implementation'org.greenrobot:greendao:3.0.1'  

implementation'org.greenrobot:greendao-generator:3.0.0'

implementation 'com.squareup.retrofit2:retrofit:2.0.2'

implementation 'com.squareup.okhttp3:okhttp:3.1.2'

implementation 'com.squareup.retrofit2:converter-gson:2.0.2'

implementation 'com.roughike:bottom-bar:2.3.1'

implementation 'io.reactivex.rxjava2:rxjava:2.0.1'

implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'

implementation 'com.android.support:design:27+'                                           TabLayout

implementation 'com.squareup.retrofit2:adapter-rxjava:2.0.2'


你可能感兴趣的:(代码整合)