From feb72adab9adb66b1f48e65e319017c1eaeea322 Mon Sep 17 00:00:00 2001 From: EndrII Date: Fri, 29 Apr 2022 01:15:15 +0300 Subject: [PATCH] fix minimum api version --- BuildBotLib/cmake.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BuildBotLib/cmake.py b/BuildBotLib/cmake.py index 1659435..292e693 100644 --- a/BuildBotLib/cmake.py +++ b/BuildBotLib/cmake.py @@ -91,7 +91,7 @@ class CMake(Make): '-DANDROID_NDK=$ANDROID_NDK_ROOT/', '-DANDROID_SDK=$ANDROID_SDK_ROOT/', '-DSIGN_ALIES="quasarapp"', - '-DANDROID_NATIVE_API_LEVEL=$ANDROID_API_VERSION', + '-DANDROID_NATIVE_API_LEVEL=$ANDROID_MIN_API_VERSION', '-DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK_ROOT/' + toochainFile, '-B cmake_build' ] @@ -136,7 +136,7 @@ class CMake(Make): '-DANDROID_SDK=$ANDROID_SDK_ROOT/', '-DANDROID_SDK_ROOT=$ANDROID_SDK_ROOT/', '-DSIGN_ALIES="quasarapp"', - '-DANDROID_NATIVE_API_LEVEL=$ANDROID_API_VERSION', + '-DANDROID_NATIVE_API_LEVEL=$ANDROID_MIN_API_VERSION', '-DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK_ROOT/' + toochainFile, '-B cmake_build' ]