Encrypted overlay filesystems implementation for Android.
Also available on GitHub: https://github.com/hardcore-sushi/DroidFS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.3 KiB
79 lines
2.3 KiB
apply plugin: 'com.android.application' |
|
apply plugin: 'kotlin-android' |
|
|
|
android { |
|
compileSdkVersion 30 |
|
buildToolsVersion "30.0.3" |
|
ndkVersion "21.4.7075529" |
|
|
|
compileOptions { |
|
targetCompatibility JavaVersion.VERSION_1_8 |
|
} |
|
|
|
defaultConfig { |
|
applicationId "sushi.hardcore.droidfs" |
|
minSdkVersion 21 |
|
targetSdkVersion 29 |
|
versionCode 17 |
|
versionName "1.5.3" |
|
|
|
ndk { |
|
abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a" |
|
} |
|
} |
|
|
|
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 fileTree(dir: "libs", include: ["*.jar"]) |
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" |
|
implementation "androidx.core:core-ktx:1.6.0" |
|
implementation "androidx.appcompat:appcompat:1.3.1" |
|
implementation "androidx.constraintlayout:constraintlayout:2.1.0" |
|
|
|
implementation "androidx.sqlite:sqlite-ktx:2.1.0" |
|
implementation "androidx.preference:preference-ktx:1.1.1" |
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" |
|
implementation "com.jaredrummler:cyanea:1.0.2" |
|
implementation "com.github.bumptech.glide:glide:4.12.0" |
|
implementation "androidx.biometric:biometric:1.1.0" |
|
|
|
def exoplayer_version = "2.15.0" |
|
implementation "com.google.android.exoplayer:exoplayer-core:$exoplayer_version" |
|
implementation "com.google.android.exoplayer:exoplayer-ui:$exoplayer_version" |
|
|
|
def camerax_v1 = "1.1.0-alpha08" |
|
implementation "androidx.camera:camera-camera2:$camerax_v1" |
|
implementation "androidx.camera:camera-lifecycle:$camerax_v1" |
|
def camerax_v2 = "1.0.0-alpha28" |
|
implementation "androidx.camera:camera-view:$camerax_v2" |
|
implementation "androidx.camera:camera-extensions:$camerax_v2" |
|
}
|
|
|