build.gradle 805 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. group 'plugin.storage.qiniu.flutter.isanye.cn.syflutterqiniustorage'
  2. version '1.0-SNAPSHOT'
  3. buildscript {
  4. repositories {
  5. google()
  6. jcenter()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.5.3'
  10. }
  11. }
  12. rootProject.allprojects {
  13. repositories {
  14. google()
  15. jcenter()
  16. }
  17. }
  18. apply plugin: 'com.android.library'
  19. android {
  20. compileSdkVersion 27
  21. defaultConfig {
  22. minSdkVersion 16
  23. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  24. }
  25. lintOptions {
  26. disable 'InvalidPackage'
  27. }
  28. }
  29. dependencies {
  30. implementation ('com.qiniu:qiniu-android-sdk:8.0.+'){
  31. exclude (group: 'com.squareup.okhttp3', module: 'okhttp')
  32. }
  33. // implementation 'com.qiniu:qiniu-android-sdk:8.0.+'
  34. }