build.gradle 840 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. group 'com.edesarrollos.multimage_picker'
  2. version '1.0-SNAPSHOT'
  3. buildscript {
  4. repositories {
  5. google()
  6. jcenter()
  7. mavenCentral()
  8. maven { url 'https://maven.google.com' }
  9. }
  10. dependencies {
  11. classpath 'com.android.tools.build:gradle:3.2.1'
  12. }
  13. }
  14. rootProject.allprojects {
  15. repositories {
  16. google()
  17. jcenter()
  18. }
  19. }
  20. apply plugin: 'com.android.library'
  21. android {
  22. compileSdkVersion 28
  23. defaultConfig {
  24. minSdkVersion 19
  25. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  26. }
  27. lintOptions {
  28. disable 'InvalidPackage'
  29. }
  30. }
  31. dependencies {
  32. implementation 'com.android.support:exifinterface:28.0.0'
  33. implementation 'com.sangcomz:FishBun:0.9.1'
  34. implementation 'com.github.bumptech.glide:glide:4.9.0'
  35. }