Repo created
This commit is contained in:
parent
e09986deae
commit
fa69fd81a1
48 changed files with 5156 additions and 0 deletions
54
app/build.gradle
Normal file
54
app/build.gradle
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue