1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Android: Use default architectures for projects in extras

This commit is contained in:
Tom Poole 2022-07-06 11:29:20 +01:00
parent 975bdecae5
commit a72f508a47
6 changed files with 9 additions and 13 deletions

View file

@ -153,9 +153,8 @@
microphonePermissionNeeded="1" androidBluetoothNeeded="1" smallIcon="c97aUr"
bigIcon="c97aUr" androidExtraAssetsFolder="../../examples/Assets">
<CONFIGURATIONS>
<CONFIGURATION name="Debug" androidArchitectures="armeabi-v7a x86" isDebug="1"
optimisation="1" linkTimeOptimisation="0" targetName="Plugin Host"
recommendedWarnings="LLVM"/>
<CONFIGURATION name="Debug" isDebug="1" optimisation="1" linkTimeOptimisation="0"
targetName="Plugin Host" recommendedWarnings="LLVM"/>
<CONFIGURATION name="Release" isDebug="0" optimisation="3" linkTimeOptimisation="1"
targetName="Plugin Host" recommendedWarnings="LLVM"/>
</CONFIGURATIONS>

View file

@ -47,7 +47,7 @@ android {
productFlavors {
debug_ {
ndk {
abiFilters "armeabi-v7a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
externalNativeBuild {
cmake {