Skip to content

Commit 4130316

Browse files
Update OpenSSL from 1.1.1 to 1.1.1b
1 parent 79bfeed commit 4130316

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

android-database-sqlcipher/build-openssl-libraries.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
MINIMUM_ANDROID_SDK_VERSION=$1
44
MINIMUM_ANDROID_64_BIT_SDK_VERSION=$2
5-
OPENSSL=openssl-1.1.1
5+
OPENSSL=openssl-$3
66

77
(cd src/main/external/;
88
gunzip -c ${OPENSSL}.tar.gz | tar xf -

android-database-sqlcipher/native.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ task buildOpenSSL () {
88
workingDir "${projectDir}"
99
commandLine "./build-openssl-libraries.sh",
1010
"${minimumAndroidSdkVersion}",
11-
"${minimumAndroid64BitSdkVersion}"
11+
"${minimumAndroid64BitSdkVersion}",
12+
"${opensslVersion}"
1213
}
1314
}
1415
}

android-database-sqlcipher/src/main/external/openssl-1.1.1.tar.gz renamed to android-database-sqlcipher/src/main/external/openssl-1.1.1b.tar.gz

7.95 MB
Binary file not shown.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ ext {
6464
nativeRootOutputDir = "${projectDir}/${mainProjectName}/src/main"
6565
androidNativeRootDir = "${nativeRootOutputDir}/external/android-libs"
6666
sqlcipherDir = "${projectDir}/${mainProjectName}/src/main/external/sqlcipher"
67-
opensslVersion = "1.1.1"
67+
opensslVersion = "1.1.1b"
6868
opensslDir = "${projectDir}/${mainProjectName}/src/main/external/openssl-${opensslVersion}"
6969
if(project.hasProperty('debugBuild') && debugBuild.toBoolean()) {
7070
otherSqlcipherCFlags = ""

0 commit comments

Comments
 (0)