85 lines
2.5 KiB
Groovy
85 lines
2.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
buildToolsVersion "31"
|
|
ndkVersion "23.1.7779620"
|
|
|
|
compileOptions {
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "sushi.hardcore.droidfs"
|
|
minSdkVersion 21
|
|
//noinspection ExpiredTargetSdkVersion
|
|
targetSdkVersion 29
|
|
versionCode 27
|
|
versionName "1.10.1"
|
|
|
|
ndk {
|
|
abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
|
|
}
|
|
}
|
|
|
|
if (!file("fdroid").exists()) {
|
|
splits {
|
|
abi {
|
|
enable true
|
|
universalApk true
|
|
}
|
|
}
|
|
}
|
|
|
|
applicationVariants.all { variant ->
|
|
variant.resValue "string", "versionName", variant.versionName
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path file('CMakeLists.txt')
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":libpdfviewer:app")
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
implementation 'androidx.core:core-ktx:1.7.0'
|
|
implementation "androidx.appcompat:appcompat:1.4.1"
|
|
implementation "androidx.constraintlayout:constraintlayout:2.1.3"
|
|
|
|
implementation "androidx.sqlite:sqlite-ktx:2.2.0"
|
|
implementation "androidx.preference:preference-ktx:1.2.0"
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
|
implementation 'com.google.android.material:material:1.5.0'
|
|
implementation "com.github.bumptech.glide:glide:4.12.0"
|
|
implementation "androidx.biometric:biometric-ktx:1.2.0-alpha04"
|
|
|
|
def exoplayer_version = "2.17.1"
|
|
implementation "com.google.android.exoplayer:exoplayer-core:$exoplayer_version"
|
|
implementation "com.google.android.exoplayer:exoplayer-ui:$exoplayer_version"
|
|
|
|
implementation "androidx.concurrent:concurrent-futures:1.1.0"
|
|
|
|
def camerax_version = "1.1.0-beta03"
|
|
implementation "androidx.camera:camera-camera2:$camerax_version"
|
|
implementation "androidx.camera:camera-lifecycle:$camerax_version"
|
|
implementation "androidx.camera:camera-view:$camerax_version"
|
|
implementation "androidx.camera:camera-extensions:$camerax_version"
|
|
}
|