build.gradle 790 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. }