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") + } } } }