summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-12-23 17:05:51 +0100
committerraysan5 <[email protected]>2020-12-23 17:05:51 +0100
commit7e459dc38ba9a6efc32e631943dd1aa509eb5827 (patch)
treedcedf2ce6bab859f8e7b338f3b7f1b950b91cc61 /src
parentf8a2903cecf36b81f3290930252dd389313cff9d (diff)
downloadraylib-7e459dc38ba9a6efc32e631943dd1aa509eb5827.tar.gz
raylib-7e459dc38ba9a6efc32e631943dd1aa509eb5827.zip
Review Android Makefiles to required version
Diffstat (limited to 'src')
-rw-r--r--src/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile
index ebdc06f1..e30c6c33 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -43,8 +43,8 @@
.PHONY: all clean install uninstall
# Define required raylib variables
-RAYLIB_VERSION = 3.1.0
-RAYLIB_API_VERSION = 310
+RAYLIB_VERSION = 3.5.0
+RAYLIB_API_VERSION = 350
# Define raylib source code path
RAYLIB_SRC_PATH ?= ../src
@@ -168,9 +168,9 @@ endif
ifeq ($(PLATFORM),PLATFORM_ANDROID)
# Android architecture
# Starting at 2019 using arm64 is mandatory for published apps,
- # and minimum required target API is Android 9 (API level 28)
- ANDROID_ARCH ?= arm
- ANDROID_API_VERSION ?= 28
+ # Starting on August 2020, minimum required target API is Android 10 (API level 29)
+ ANDROID_ARCH ?= arm64
+ ANDROID_API_VERSION ?= 29
# Android required path variables
# NOTE: Starting with Android NDK r21, no more toolchain generation is required, NDK is the toolchain on itself