build.gradle 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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:1.13.0'
  37. // api 'com.compdf:compdfkit-ui:1.12.0'
  38. api 'com.compdf:compdfkit-tools:1.13.0-SNAPSHOT'
  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. }