From e0bbe4fdad9dfaf0069770c4fdf9c4e8f9f59ba9 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Thu, 25 Mar 2021 22:20:50 +0100 Subject: [PATCH] [android] Minor abi rewording during the build Signed-off-by: Alexander Borsuk --- android/build.gradle | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index b19eca23ab..8df7904384 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -187,7 +187,7 @@ android { if (project.hasProperty('pch')) pchFlag = 'ON' cmake { - version "3.8.0+" + version '3.8.0+' cppFlags '-fexceptions', '-frtti', '-std=c++17' cFlags '-ffunction-sections', '-fdata-sections', '-Wno-extern-c-compat' @@ -198,25 +198,25 @@ android { ndk { abiFilters = new HashSet<>() - if (project.hasProperty("arm32")) { - println("Building for the ARM32 architecture") - abiFilters.add("armeabi-v7a") - } else if (project.hasProperty("arm64")) { - println("Building for the ARM64 architecture") - abiFilters.add("arm64-v8a") - } else if (project.hasProperty("x86_64")) { - println("Building for the x86_64 architecture") - abiFilters.add("x86_64") - } else if (project.hasProperty("x86")) { - println("Building for the x86 architecture") - abiFilters.add("x86") + if (project.hasProperty('arm32') || project.hasProperty('armeabi-v7a')) { + println('Building for armeabi-v7a') + abiFilters.add('armeabi-v7a') + } else if (project.hasProperty('arm64') || project.hasProperty('arm64-v8a')) { + println('Building for arm64-v8a') + abiFilters.add('arm64-v8a') + } else if (project.hasProperty('x86_64')) { + println('Building for x86_64') + abiFilters.add('x86_64') + } else if (project.hasProperty('x86')) { + println('Building for x86') + abiFilters.add('x86') } else { if (!project.hasProperty('splitApk')) { - println("Building for the ARM and x86 architectures") - abiFilters.add("x86") - abiFilters.add("x86_64") - abiFilters.add("armeabi-v7a") - abiFilters.add("arm64-v8a") + println('Building for armeabi-v7a, arm64-v8a, x86, x86_64') + abiFilters.add('x86') + abiFilters.add('x86_64') + abiFilters.add('armeabi-v7a') + abiFilters.add('arm64-v8a') } } }