123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 26
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 26
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- configurations {
- all*.exclude group: 'com.android.support', module: 'support-v13'
- }
- dependencies {
- def retrofitVersion = '2.3.0'
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- testImplementation 'junit:junit:4.12'
- implementation 'com.android.support:appcompat-v7:26.1.0'
- compile 'com.android.support:support-v4:26.1.0'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
- implementation 'me.majiajie:pager-bottom-tab-strip:2.3.0'
- compile 'com.android.support:recyclerview-v7:26.1.0'
- compile 'com.android.support:design:26.1.0'
- //fragmentation
- compile 'me.yokeyword:fragmentation:1.1.6'
- //rx
- compile 'io.reactivex.rxjava2:rxjava:2.1.1'
- compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
- compile 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
- //network
- compile "com.squareup.retrofit2:retrofit:$retrofitVersion"
- compile "com.squareup.retrofit2:converter-gson:$retrofitVersion"
- compile "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion"
- compile 'com.squareup.okhttp3:logging-interceptor:3.8.1'
- // 处理常用的编码方法的工具类包
- compile 'commons-codec:commons-codec:1.10'
- compile 'com.jakewharton.timber:timber:4.5.1'
- //get set
- compileOnly 'org.projectlombok:lombok:1.16.16'
- annotationProcessor "org.projectlombok:lombok:1.16.16"
- //状态栏颜色修改
- compile 'com.gyf.barlibrary:barlibrary:2.2.9'
- //dagger
- provided 'javax.annotation:javax.annotation-api:1.2'
- //底部栏
- compile 'me.majiajie:pager-bottom-tab-strip:+'
- //按钮显示数字 https://github.com/qstumn/BadgeView
- compile 'q.rorbin:badgeview:1.1.3'
- //banner https://github.com/youth5201314/banner
- compile 'com.youth.banner:banner:1.4.10'
- //最新版本
- // 图片加载依赖
- compile 'com.github.bumptech.glide:glide:3.7.0'
- compile 'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar'
- //拉刷新
- compile 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-18'
- compile 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-18'
- //没有使用特殊Header,可以不加这行
- //popwindow
- compile 'com.example.zhouwei.library:library:1.0.0'
- /*扫描 https://github.com/yuzhiqiang1993/zxing*/
- compile 'com.github.yuzhiqiang1993:zxing:2.2.5'
- compile 'com.yongyu.tabLayoutHelper:library:1.0.0'
- //权限
- compile 'com.tbruyelle.rxpermissions2:rxpermissions:0.9.4@aar'
- compile 'org.jsoup:jsoup:1.10.1'
- implementation 'com.afollestad.material-dialogs:core:0.9.1.0'
- implementation 'com.afollestad.material-dialogs:commons:0.9.1.0'
- compile 'com.github.chrisbanes:PhotoView:1.2.5'
- compile 'com.just.agentweb:agentweb:4.0.2'
- compile 'com.lcodecorex:tkrefreshlayout:1.0.7'
- //版本更新
- compile 'com.qianwen:update-app:3.5.2'
- //okhttputils
- // compile 'com.qianwen:okhttp-utils:3.8.0'
- compile 'com.zhy:okhttputils:2.6.2'
- }
|