Upgrading to OpenSSL v1.1.1h

This commit is contained in:
Hardcore Sushi 2020-10-15 19:40:45 +02:00
parent fdd2c5b4e4
commit 1bde428ace
2 changed files with 5 additions and 5 deletions

View File

@ -70,15 +70,15 @@ $ git clone https://github.com/hardcore-sushi/DroidFS.git
Gocryptfs need openssl to work:
```
$ cd DroidFS/app/libgocryptfs
$ wget -qO - https://www.openssl.org/source/openssl-1.1.1g.tar.gz | tar -xvzf -
$ wget -qO - https://www.openssl.org/source/openssl-1.1.1h.tar.gz | tar -xvzf -
```
#### Build
First, we need to build libgocryptfs.<br>
Retrieve your Android NDK installation path, usually someting like "\<Android SDK path\>/ndk/\<NDK version\>".
Retrieve your Android NDK installation path, usually someting like "/home/\<user\>/AndroidSDK/ndk/\<NDK version\>".
```
$ cd DroidFS/app/libgocryptfs
$ env ANDROID_NDK_HOME="<your ndk path>" OPENSSL_PATH="./openssl-1.1.1g" ./build.sh
$ env ANDROID_NDK_HOME="<your ndk path>" OPENSSL_PATH="./openssl-1.1.1h" ./build.sh
```
Then, open the DroidFS project with Android Studio.<br>
If a device (virtual or physical) is connected, just click on "Run".<br>

View File

@ -14,8 +14,8 @@ android {
applicationId "sushi.hardcore.droidfs"
minSdkVersion 21
targetSdkVersion 29
versionCode 3
versionName "1.1.8"
versionCode 4
versionName "1.1.9"
ndk {
abiFilters 'x86_64', 'armeabi-v7a', 'arm64-v8a'