From 982f60b3242a264a77b69e4efd3abbba656bb631 Mon Sep 17 00:00:00 2001 From: Razvan Stoenescu Date: Mon, 25 Feb 2019 21:23:55 +0200 Subject: [PATCH] feat(@quasar/app): Enforce correct build mode for Cordova on iOS with latest XCode --- app/lib/cordova/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/lib/cordova/index.js b/app/lib/cordova/index.js index d1c5f4bc2ab..5b56e5fa884 100644 --- a/app/lib/cordova/index.js +++ b/app/lib/cordova/index.js @@ -36,6 +36,10 @@ class CordovaRunner { args.push(`--target=${cfg.ctx.emulator}`) } + if (cfg.ctx.targetName === 'ios') { + args.push(`--buildFlag=-UseModernBuildSystem=0`) + } + return this.__runCordovaCommand( cfg, args