build.gradle 433 B

1234567891011121314151617181920
  1. apply plugin: 'com.android.library'
  2. apply from: '../dependencies.gradle'
  3. //apply plugin: 'checkstyle'
  4. android {
  5. defaultConfig {
  6. }
  7. }
  8. dependencies {
  9. implementation 'it.sephiroth.android.library.imagezoom:library:1.0.4'
  10. //glide
  11. implementation 'com.github.bumptech.glide:glide:4.11.0'
  12. kapt 'com.github.bumptech.glide:compiler:4.11.0'
  13. // picasso
  14. implementation 'com.squareup.picasso:picasso:2.71828'
  15. }