From 3ec5b9b85c06d8c9bffb22ae104d30dbeeabcf59 Mon Sep 17 00:00:00 2001 From: greshilov Date: Thu, 5 Apr 2018 20:12:24 +0300 Subject: [PATCH] [android] Fix split apk param --- android/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index f1059be100..d7d3f08dd7 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -153,7 +153,11 @@ android { println("Building for the x86 architecture") abiFilters.add("x86") } else { - println("Building for the ARM and x86 architectures") + if (!project.hasProperty('splitApk')) { + println("Building for the ARM and x86 architectures") + abiFilters.add("armeabi-v7a") + abiFilters.add("x86") + } } } }