SDL: added APP_PLATFORM option to the AndroidAppSettings.cfg

This commit is contained in:
Sergii Pylypenko
2016-10-04 17:50:42 +03:00
parent 962b6ae000
commit 2a51880efc
4 changed files with 21 additions and 2 deletions

View File

@@ -58,3 +58,5 @@ SDL_VERSION := 1.2
#APP_LDFLAGS := -flto
# Latest GCC got better LTO support
NDK_TOOLCHAIN_VERSION := clang
APP_PLATFORM := android-18

View File

@@ -244,6 +244,12 @@ AppMinimumRAM=0
# GCC version, or 'clang' for CLANG
NDK_TOOLCHAIN_VERSION=clang
# Android platform version.
# android-9 = Android 2.3, the earliest supported version.
# android-18 = Android 4.3, the first version supporting GLES3.
# android-21 = Android 5.1, the first version with SO_REUSEPORT defined.
APP_PLATFORM=android-21
# Specify architectures to compile, 'all' or 'y' to compile for all architectures.
# Available architectures: armeabi armeabi-v7a x86 mips arm64-v8a
MultiABI='armeabi-v7a'