2017-01-16 15:23:11 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
#
|
2024-11-20 16:53:40 -05:00
|
|
|
# Android build configuration
|
2017-01-16 15:23:11 +01:00
|
|
|
#
|
|
|
|
|
# Note: This is a simple configuration to build all
|
|
|
|
|
# architectures in one rush.
|
|
|
|
|
# Since android 64 bit support was introduced with NDK API 21
|
|
|
|
|
# this is the minimal common denominator.
|
|
|
|
|
# If you require support for older NDK API levels,
|
2024-11-20 16:53:40 -05:00
|
|
|
# create separate configurations for each NDK API level
|
2017-01-16 15:23:11 +01:00
|
|
|
# and architecture you want to support.
|
2022-01-13 08:23:44 +01:00
|
|
|
WITH_OPENH264=0
|
2017-01-16 15:23:11 +01:00
|
|
|
WITH_OPENSSL=1
|
2022-01-13 08:23:44 +01:00
|
|
|
WITH_FFMPEG=1
|
2023-07-02 12:16:01 -04:00
|
|
|
WITH_AAD=1
|
2017-01-16 15:23:11 +01:00
|
|
|
BUILD_DEPS=1
|
|
|
|
|
DEPS_ONLY=0
|
2020-11-15 04:10:41 +01:00
|
|
|
NDK_TARGET=21
|
2022-11-14 07:48:53 +01:00
|
|
|
WITH_MEDIACODEC=0
|
2017-01-16 15:23:11 +01:00
|
|
|
|
2025-05-05 13:33:30 +02:00
|
|
|
OPENH264_TAG=v2.6.0
|
|
|
|
|
OPENH264_HASH=558544ad358283a7ab2930d69a9ceddf913f4a51ee9bf1bfb9e377322af81a69
|
|
|
|
|
OPENSSL_TAG=openssl-3.5.0
|
|
|
|
|
OPENSSL_HASH=344d0a79f1a9b08029b0744e2cc401a43f9c90acd1044d09a530b4885a8e9fc0
|
|
|
|
|
FFMPEG_TAG=n7.1.1
|
|
|
|
|
FFMPEG_HASH=f117507dc501f2a6c11f9241d8d0c3213846cfad91764361af37befd6b6c523d
|
2025-09-18 10:17:52 +02:00
|
|
|
CJSON_TAG=v1.7.19
|
|
|
|
|
CJSON_HASH=7fa616e3046edfa7a28a32d5f9eacfd23f92900fe1f8ccd988c1662f30454562
|
2017-01-16 15:23:11 +01:00
|
|
|
|
|
|
|
|
SRC_DIR=$SCRIPT_PATH/..
|
|
|
|
|
BUILD_DST=$SCRIPT_PATH/../client/Android/Studio/freeRDPCore/src/main/jniLibs
|
|
|
|
|
BUILD_SRC=$SRC_DIR/build
|
|
|
|
|
|
|
|
|
|
CMAKE_BUILD_TYPE=Release
|
|
|
|
|
|
2018-11-09 15:20:52 +13:00
|
|
|
BUILD_ARCH="armeabi-v7a x86"
|