[android] Fix split apk param

This commit is contained in:
greshilov 2018-04-05 20:12:24 +03:00 committed by Aleksandr Zatsepin
parent c8d8129308
commit 3ec5b9b85c

View file

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