第三方依赖

    compile 'com.lzy.net:okgo:3.0.4'
    implementation 'com.squareup.picasso:picasso:2.3.2'
    implementation 'com.github.bumptech.glide:glide:4.9.0'   
    compile 'org.greenrobot:eventbus:3.0.0'
    compile 'com.youth.banner:banner:1.4.10'    //轮播图
    implementation 'com.github.yuzhiqiang1993:zxing:2.1.8'     //二维码
    implementation 'com.master.android:permissionhelper:2.0'
   
    compile 'com.github.wendux:DSBridge-Android:3.0-SNAPSHOT'
    maven { url 'https://jitpack.io' }

    implementation 'com.lzy.widget:imagepicker:0.6.1'
    configurations.all {
      resolutionStrategy.eachDependency { DependencyResolveDetails details ->
          def requested = details.requested
          if (requested.group == 'com.android.support') {
              if (!requested.name.startsWith("multidex")) {
                  details.useVersion '24.1.0'
              }
          }
      }
  }

maven { url "https://maven.google.com/"}

api 'com.apkfuns.logutils:library:1.0.6'  日志管理
api 'com.android.support:design:28.0.0'   tablayout
api 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.42'   适配器
maven { url 'https://www.jitpack.io' }    //添加拉取仓库  BaseRecyclerViewAdapterHelper
api  'liji.library.dev:citypickerview:0.7.0'     //城市选择器
    

你可能感兴趣的:(第三方依赖)