apply plugin: 'com.android.application' apply plugin: 'kotlin-android' if (hasProperty("disableCryFS")) { ext.disableCryFS = getProperty("disableCryFS") } else { ext.disableCryFS = false } if (hasProperty("disableGocryptfs")) { ext.disableGocryptfs = getProperty("disableGocryptfs") } else { ext.disableGocryptfs = false } 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 28 versionName "2.0.0-alpha1" ndk { abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a" } externalNativeBuild.cmake { if (project.ext.disableGocryptfs) { arguments "-DGOCRYPTFS=OFF" } if (project.ext.disableCryFS) { arguments "-DCRYFS=OFF" } } } if (!file("fdroid").exists()) { splits { abi { enable true universalApk true } } } applicationVariants.all { variant -> variant.resValue "string", "versionName", variant.versionName buildConfigField "boolean", "CRYFS_DISABLED", "${project.ext.disableCryFS}" buildConfigField "boolean", "GOCRYPTFS_DISABLED", "${project.ext.disableGocryptfs}" } buildFeatures { viewBinding true } buildTypes { release { postprocessing { removeUnusedCode true removeUnusedResources true obfuscate false optimizeCode true proguardFiles '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" }