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); }