From 6a5d286ba87f3a0f049b98ee05c3604f87537936 Mon Sep 17 00:00:00 2001 From: IsaacTCB <116975602+IsaacTCB@users.noreply.github.com> Date: Sat, 29 Oct 2022 19:48:10 -0300 Subject: [PATCH] Fix Android x86 Architecture name When building a x86 project, the folder inside lib is named i686. However Android x86 actually expects the folder to be called x86. --- examples/Makefile.Android | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile.Android b/examples/Makefile.Android index 5d76fb7617ad..0570d8b231a8 100644 --- a/examples/Makefile.Android +++ b/examples/Makefile.Android @@ -48,7 +48,7 @@ ifeq ($(ANDROID_ARCH),ARM64) ANDROID_ARCH_NAME = arm64-v8a endif ifeq ($(ANDROID_ARCH),x86) - ANDROID_ARCH_NAME = i686 + ANDROID_ARCH_NAME = x86 endif ifeq ($(ANDROID_ARCH),x86_64) ANDROID_ARCH_NAME = x86_64