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.2') // api ('com.compdf:compdfkit-ui:2.1.2') 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' }