1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- plugins {
- id 'com.android.library'
- }
- apply from: '../compdfkit-tools-mavencentral.gradle'
- def getProductName() {
- return "ComPDFKitDemo"
- }
- def releaseTime() {
- return new Date().format("yyyy-MM-dd_hh-mm-ss", TimeZone.getTimeZone("GMT+08:00"))
- }
- android {
- namespace 'com.compdfkit.tools'
- compileSdk rootProject.ext.android.COMPILESDK
- resourcePrefix 'tools_'
- publishing {
- singleVariant('release') {
- withSourcesJar()
- withJavadocJar()
- }
- }
- defaultConfig {
- minSdk rootProject.ext.android.MINSDK
- targetSdk rootProject.ext.android.TARGETSDK
- buildConfigField("String", "COMPDFKit_SDK_VERSION", "\"${versionName}\"")
- buildConfigField("String", "COMPDFKit_SDK_BUILD_TAG", "\"${versionName}_${versionCode}_${releaseTime()}\"")
- consumerProguardFiles "proguard-rules.pro"
- setProperty("archivesBaseName", "ComPDFKit_Tools")
- vectorDrawables.useSupportLibrary = true
- }
- buildTypes {
- release {
- minifyEnabled true
- zipAlignEnabled true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- api fileTree(include: ['*.jar'], dir: 'libs')
- // use this
- api project(path:':ComPDFKit_Repo:compdfkit')
- api project(path:':ComPDFKit_Repo:compdfkit-ui')
- // or use
- // api ('com.compdf:compdfkit:2.1.3')
- // api ('com.compdf:compdfkit-ui:2.1.3')
- api 'com.github.bumptech.glide:glide:4.15.1'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1'
- api 'androidx.documentfile:documentfile:1.0.1'
- api 'androidx.appcompat:appcompat:1.6.1'
- api 'com.google.android.material:material:1.8.0'
- api 'androidx.constraintlayout:constraintlayout:2.1.4'
- }
- configurations.all { resolutionStrategy.cacheChangingModulesFor 0, 'seconds' }
|