mupdf/app/build.gradle

55 lines
871 B
Groovy
Raw Normal View History

2025-11-22 13:51:39 +01:00
apply plugin: 'com.android.application'
group = 'com.artifex.mupdf'
version = '1.26.11a'
dependencies {
if (file('../lib/build.gradle').isFile())
api project(':lib')
else
api 'com.artifex.mupdf:viewer:1.26.11a'
}
android {
namespace 'com.artifex.mupdf.viewer.app'
compileSdkVersion 33
defaultConfig {
minSdkVersion 21
targetSdkVersion 35
versionName '1.26.11a'
versionCode 180
}
splits {
abi {
enable true
universalApk true
}
}
bundle {
abi {
enableSplit true
}
}
if (project.hasProperty('release_storeFile')) {
signingConfigs {
release {
storeFile file(release_storeFile)
storePassword release_storePassword
keyAlias release_keyAlias
keyPassword release_keyPassword
}
}
buildTypes {
release {
signingConfig signingConfigs.release
ndk {
debugSymbolLevel 'FULL'
}
}
}
}
}