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.
46 lines
1.2 KiB
46 lines
1.2 KiB
apply plugin: 'com.android.application' |
|
apply plugin: 'kotlin-android' |
|
apply plugin: 'kotlin-android-extensions' |
|
|
|
android { |
|
compileSdkVersion 29 |
|
buildToolsVersion "30.0.0" |
|
|
|
defaultConfig { |
|
applicationId "sushi.hardcore.droidfs" |
|
minSdkVersion 21 |
|
targetSdkVersion 28 |
|
versionCode 1 |
|
versionName "1.0" |
|
|
|
ndk { |
|
abiFilters 'x86_64', 'armeabi-v7a', 'arm64-v8a' |
|
} |
|
} |
|
|
|
buildTypes { |
|
release { |
|
minifyEnabled false |
|
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:$kotlin_version" |
|
implementation 'androidx.core:core-ktx:1.3.0' |
|
implementation 'androidx.appcompat:appcompat:1.1.0' |
|
testImplementation 'junit:junit:4.12' |
|
|
|
implementation 'androidx.sqlite:sqlite:2.1.0' |
|
implementation 'androidx.preference:preference:1.1.1' |
|
implementation 'com.github.clans:fab:1.6.4' |
|
implementation 'com.jaredrummler:cyanea:1.0.2' |
|
}
|
|
|