build.gradle 872 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. group 'io.flutter.plugins.imagepicker'
  2. version '1.0-SNAPSHOT'
  3. buildscript {
  4. repositories {
  5. google()
  6. jcenter()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.3.0'
  10. }
  11. }
  12. rootProject.allprojects {
  13. repositories {
  14. google()
  15. jcenter()
  16. maven {
  17. url 'https://google.bintray.com/exoplayer/'
  18. }
  19. }
  20. }
  21. apply plugin: 'com.android.library'
  22. android {
  23. compileSdkVersion 28
  24. defaultConfig {
  25. minSdkVersion 16
  26. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  27. }
  28. lintOptions {
  29. disable 'InvalidPackage'
  30. }
  31. dependencies {
  32. implementation 'androidx.core:core:1.0.2'
  33. implementation 'androidx.annotation:annotation:1.0.0'
  34. }
  35. }
  36. dependencies {
  37. implementation 'androidx.exifinterface:exifinterface:1.1.0'
  38. }