所有的依赖

//banner轮播
compile ‘com.youth.banner:banner:1.4.10’
//retrofit网络
compile ‘com.squareup.retrofit2:retrofit:2.3.0’
//retrofitGson
compile ‘com.squareup.retrofit2:converter-gson:2.3.0’
//RxAndroid
compile ‘io.reactivex.rxjava2:rxandroid:2.0.1’
//RxJava
compile ‘io.reactivex.rxjava2:rxjava:2.1.7’
//RxJava与retrofit结合
compile ‘com.squareup.retrofit2:adapter-rxjava2:2.3.0’
//图片加载框架fresco
compile ‘com.facebook.fresco:fresco:0.11.0’
//retrofit2
compile ‘org.greenrobot:eventbus:3.1.1’
//recyclerview
compile ‘com.android.support:recyclerview-v7:26.1.0’
//图片加载框架glide
compile ‘com.github.bumptech.glide:glide:4.0.0’
//tablayout依赖
compile ‘com.android.support:design:26.0.0-alpha1’

//优化as编译速度 下载builder.app 下
dexOptions {
//使用增量模式构建
incremental true
//最大堆内存
javaMaxHeapSize “10g”
//是否支持大工程模式
jumboMode = true
//预编译
preDexLibraries = true
//线程数
threadCount = 8
}

你可能感兴趣的:(所有的依赖)