Increased required android version to 6.0 (API 23)
There are library loader issues with OpenSSL below that API version. (Undefined symbols most likely due to versioning mismatches of the OpenSSL build)
This commit is contained in:
parent
dd489e27f2
commit
8cf0a21acd
@ -32,7 +32,7 @@ ext {
|
||||
versionCode = properties.get('VERSION_CODE', 100)
|
||||
compileApi = properties.get('COMPILE_API', 31)
|
||||
targetApi = properties.get('TARGET_API', 31)
|
||||
minApi = properties.get('MIN_API', 21)
|
||||
minApi = properties.get('MIN_API', 23)
|
||||
toolsVersion = properties.get('TOOLS_VERSION', '31.0.0')
|
||||
|
||||
println '----------------- Project configuration -------------------'
|
||||
|
@ -15,7 +15,7 @@ WITH_OPENSSL=1
|
||||
WITH_FFMPEG=1
|
||||
BUILD_DEPS=1
|
||||
DEPS_ONLY=0
|
||||
NDK_TARGET=21
|
||||
NDK_TARGET=23
|
||||
|
||||
JPEG_TAG=master
|
||||
OPENH264_TAG=v1.8.0 # NOTE: NDK r15c or earlier needed in --openh624-ndk for v1.8.0
|
||||
|
Loading…
Reference in New Issue
Block a user