From c6950836a0cfeb0fbfe9bafd956bb858924267a5 Mon Sep 17 00:00:00 2001 From: Gerhard Stein Date: Mon, 28 Sep 2020 06:45:32 +0000 Subject: [PATCH] Fixes issue when MultiABI is set to no, indicating the correct target platform --- changeAppSettings.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changeAppSettings.sh b/changeAppSettings.sh index 0086124c2..4357459b0 100755 --- a/changeAppSettings.sh +++ b/changeAppSettings.sh @@ -742,7 +742,7 @@ fi if [ "$MultiABI" = "y" ] ; then MultiABI="all" elif [ "$MultiABI" = "n" ] ; then - MultiABI="armeabi" + MultiABI="armeabi-v7a" else MultiABI="$MultiABI" fi