From 7e459dc38ba9a6efc32e631943dd1aa509eb5827 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 23 Dec 2020 17:05:51 +0100 Subject: Review Android Makefiles to required version --- src/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') 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 -- cgit v1.2.3