From a66d6aed28f8e756b01f07eb894ac96113a39e1f Mon Sep 17 00:00:00 2001 From: hogliux Date: Tue, 3 Nov 2015 20:46:00 +0000 Subject: [PATCH] Add more sensible default architectures --- .../Project Saving/jucer_ProjectExport_AndroidStudio.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_AndroidStudio.h b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_AndroidStudio.h index 6920560062..5b0d4c7586 100644 --- a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_AndroidStudio.h +++ b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_AndroidStudio.h @@ -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); }