build.gradle 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. apply from: '../compdfkit-tools-mavencentral.gradle'
  5. def getProductName() {
  6. return "ComPDFKitDemo"
  7. }
  8. def releaseTime() {
  9. return new Date().format("yyyy-MM-dd_hh-mm-ss", TimeZone.getTimeZone("GMT+08:00"))
  10. }
  11. android {
  12. namespace 'com.compdfkit.tools'
  13. compileSdk rootProject.ext.android.COMPILESDK
  14. resourcePrefix 'tools_'
  15. publishing {
  16. singleVariant('release') {
  17. withSourcesJar()
  18. withJavadocJar()
  19. }
  20. }
  21. defaultConfig {
  22. minSdk rootProject.ext.android.MINSDK
  23. targetSdk rootProject.ext.android.TARGETSDK
  24. buildConfigField("String", "COMPDFKit_SDK_VERSION", "\"${versionName}\"")
  25. buildConfigField("String", "COMPDFKit_SDK_BUILD_TAG", "\"${versionName}_${versionCode}_${releaseTime()}\"")
  26. consumerProguardFiles "proguard-rules.pro"
  27. setProperty("archivesBaseName", "ComPDFKit_Tools")
  28. vectorDrawables.useSupportLibrary = true
  29. }
  30. buildTypes {
  31. release {
  32. minifyEnabled true
  33. zipAlignEnabled true
  34. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  35. }
  36. }
  37. compileOptions {
  38. sourceCompatibility JavaVersion.VERSION_1_8
  39. targetCompatibility JavaVersion.VERSION_1_8
  40. }
  41. }
  42. dependencies {
  43. api fileTree(include: ['*.jar'], dir: 'libs')
  44. // use this
  45. api project(path:':ComPDFKit_Repo:compdfkit')
  46. api project(path:':ComPDFKit_Repo:compdfkit-ui')
  47. // or use
  48. // api ('com.compdf:compdfkit:2.1.2')
  49. // api ('com.compdf:compdfkit-ui:2.1.2')
  50. api 'com.github.bumptech.glide:glide:4.15.1'
  51. annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1'
  52. api 'androidx.documentfile:documentfile:1.0.1'
  53. api 'androidx.appcompat:appcompat:1.6.1'
  54. api 'com.google.android.material:material:1.8.0'
  55. api 'androidx.constraintlayout:constraintlayout:2.1.4'
  56. }
  57. configurations.all { resolutionStrategy.cacheChangingModulesFor 0, 'seconds' }