forked from organicmaps/organicmaps
[android] Fix split apk param
This commit is contained in:
parent
c8d8129308
commit
3ec5b9b85c
1 changed files with 5 additions and 1 deletions
|
@ -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")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue