build.gradle 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. group 'com.compdfkit.flutter.compdfkit_flutter'
  2. version '1.0'
  3. buildscript {
  4. repositories {
  5. google()
  6. mavenCentral()
  7. mavenLocal()
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:7.3.0'
  11. }
  12. }
  13. rootProject.allprojects {
  14. repositories {
  15. google()
  16. mavenCentral()
  17. mavenLocal()
  18. maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
  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. // dependencies compdfkit pdf sdk
  37. api 'com.compdf:compdfkit-tools:2.2.2-SNAPSHOT'
  38. testImplementation 'junit:junit:4.13.2'
  39. testImplementation 'org.mockito:mockito-core:5.0.0'
  40. api 'com.github.bumptech.glide:glide:4.15.1'
  41. annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1'
  42. api 'androidx.documentfile:documentfile:1.0.1'
  43. }
  44. testOptions {
  45. unitTests.all {
  46. testLogging {
  47. events "passed", "skipped", "failed", "standardOut", "standardError"
  48. outputs.upToDateWhen {false}
  49. showStandardStreams = true
  50. }
  51. }
  52. }
  53. }
  54. // refresh snapshot implementation
  55. configurations.all { resolutionStrategy.cacheChangingModulesFor 0, 'seconds' }