forked from hardcoresushi/DroidFS
Update dependencies
This commit is contained in:
parent
f1a9c1383c
commit
891a581329
10
BUILD.md
10
BUILD.md
@ -45,16 +45,16 @@ $ git clone --depth=1 https://git.ffmpeg.org/ffmpeg.git
|
||||
If you want Gocryptfs support, you need to download OpenSSL:
|
||||
```
|
||||
$ cd ../libgocryptfs
|
||||
$ wget https://www.openssl.org/source/openssl-1.1.1v.tar.gz
|
||||
$ wget https://www.openssl.org/source/openssl-1.1.1w.tar.gz
|
||||
```
|
||||
Verify OpenSSL signature:
|
||||
```
|
||||
$ wget https://www.openssl.org/source/openssl-1.1.1v.tar.gz.asc
|
||||
$ gpg --verify openssl-1.1.1v.tar.gz.asc openssl-1.1.1v.tar.gz
|
||||
$ wget https://www.openssl.org/source/openssl-1.1.1w.tar.gz.asc
|
||||
$ gpg --verify openssl-1.1.1w.tar.gz.asc openssl-1.1.1w.tar.gz
|
||||
```
|
||||
Continue **ONLY** if the signature is **VALID**.
|
||||
```
|
||||
$ tar -xzf openssl-1.1.1v.tar.gz
|
||||
$ tar -xzf openssl-1.1.1w.tar.gz
|
||||
```
|
||||
If you want CryFS support, initialize libcryfs:
|
||||
```
|
||||
@ -84,7 +84,7 @@ $ ./build.sh ffmpeg
|
||||
This step is only required if you want Gocryptfs support.
|
||||
```
|
||||
$ cd app/libgocryptfs
|
||||
$ OPENSSL_PATH="./openssl-1.1.1v" ./build.sh
|
||||
$ OPENSSL_PATH="./openssl-1.1.1w" ./build.sh
|
||||
```
|
||||
## Compile APKs
|
||||
Gradle build libgocryptfs and libcryfs by default.
|
||||
|
@ -37,8 +37,8 @@ android {
|
||||
applicationId "sushi.hardcore.droidfs"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 32
|
||||
versionCode 33
|
||||
versionName "2.1.0"
|
||||
versionCode 34
|
||||
versionName "2.1.1"
|
||||
|
||||
ndk {
|
||||
abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
|
||||
@ -103,7 +103,6 @@ android {
|
||||
|
||||
dependencies {
|
||||
implementation project(":libpdfviewer:app")
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||
implementation 'androidx.core:core-ktx:1.12.0'
|
||||
implementation "androidx.appcompat:appcompat:1.6.1"
|
||||
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
|
||||
@ -115,7 +114,7 @@ dependencies {
|
||||
implementation "androidx.preference:preference-ktx:1.2.1"
|
||||
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
||||
implementation 'com.google.android.material:material:1.9.0'
|
||||
implementation 'com.github.bumptech.glide:glide:4.15.1'
|
||||
implementation 'com.github.bumptech.glide:glide:4.16.0'
|
||||
implementation "androidx.biometric:biometric-ktx:1.2.0-alpha05"
|
||||
|
||||
def media3_version = "1.1.1"
|
||||
@ -131,7 +130,7 @@ dependencies {
|
||||
implementation "androidx.camera:camera-view:$camerax_version"
|
||||
implementation "androidx.camera:camera-extensions:$camerax_version"
|
||||
|
||||
def autoValueVersion = "1.10.1"
|
||||
def autoValueVersion = '1.10.4'
|
||||
implementation "com.google.auto.value:auto-value-annotations:$autoValueVersion"
|
||||
annotationProcessor "com.google.auto.value:auto-value:$autoValueVersion"
|
||||
}
|
||||
|
2
fastlane/metadata/android/en-US/changelogs/34.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/34.txt
Normal file
@ -0,0 +1,2 @@
|
||||
- Dependencies updates
|
||||
- Fix database upgrade crash
|
Loading…
Reference in New Issue
Block a user