Browse Source

Add more sensible default architectures

tags/2021-05-28
hogliux 9 years ago
parent
commit
a66d6aed28
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      extras/Introjucer/Source/Project Saving/jucer_ProjectExport_AndroidStudio.h

+ 6
- 1
extras/Introjucer/Source/Project Saving/jucer_ProjectExport_AndroidStudio.h View File

@@ -137,7 +137,12 @@ protected:
: BuildConfiguration (p, settings, e)
{
if (getArchitectures().isEmpty())
getArchitecturesValue() = "armeabi armeabi-v7a";
{
if (isDebug())
getArchitecturesValue() = "armeabi x86";
else
getArchitecturesValue() = "armeabi armeabi-v7a x86";
}
}
Value getArchitecturesValue() { return getValue (Ids::androidArchitectures); }


Loading…
Cancel
Save