build.gradle 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. group 'com.compdfkit.flutter.compdfkit_flutter'
  2. version '1.0'
  3. buildscript {
  4. repositories {
  5. google()
  6. mavenCentral()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:7.3.0'
  10. }
  11. }
  12. rootProject.allprojects {
  13. repositories {
  14. google()
  15. mavenCentral()
  16. maven {
  17. url 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
  18. }
  19. }
  20. }
  21. apply plugin: 'com.android.library'
  22. android {
  23. compileSdk 33
  24. compileOptions {
  25. sourceCompatibility JavaVersion.VERSION_1_8
  26. targetCompatibility JavaVersion.VERSION_1_8
  27. }
  28. defaultConfig {
  29. minSdkVersion 21
  30. }
  31. dependencies {
  32. compileOnly fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
  33. implementation 'com.google.android.material:material:1.8.0'
  34. implementation 'androidx.appcompat:appcompat:1.6.1'
  35. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  36. api 'com.compdf:compdfkit:2.0.0'
  37. api 'com.compdf:compdfkit-ui:2.0.0'
  38. api ('com.compdf:compdfkit-tools:2.0.0')
  39. testImplementation 'junit:junit:4.13.2'
  40. testImplementation 'org.mockito:mockito-core:5.0.0'
  41. api 'com.github.bumptech.glide:glide:4.15.1'
  42. annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1'
  43. api 'androidx.documentfile:documentfile:1.0.1'
  44. }
  45. testOptions {
  46. unitTests.all {
  47. testLogging {
  48. events "passed", "skipped", "failed", "standardOut", "standardError"
  49. outputs.upToDateWhen {false}
  50. showStandardStreams = true
  51. }
  52. }
  53. }
  54. }
  55. // refresh snapshot implementation
  56. configurations.all { resolutionStrategy.cacheChangingModulesFor 0, 'seconds' }