From c3ebc51c0f5478a3a3ed5e100a195231e8656aba Mon Sep 17 00:00:00 2001 From: Hidenori Matsubayashi Date: Mon, 2 Aug 2021 11:32:31 +0900 Subject: [PATCH] Change the default value of runner (bundle path) (#36) Changed the default value of runner's command line option for bundle path. --- templates/app/runner/flutter_embedder_options.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/app/runner/flutter_embedder_options.h b/templates/app/runner/flutter_embedder_options.h index 51e378f..636fdda 100644 --- a/templates/app/runner/flutter_embedder_options.h +++ b/templates/app/runner/flutter_embedder_options.h @@ -14,8 +14,8 @@ class FlutterEmbedderOptions { public: FlutterEmbedderOptions() { - options_.AddString("bundle", "b", "Path to Flutter app bundle", "./bundle", - true); + options_.AddString("bundle", "b", "Path to Flutter app bundle", "./", + false); options_.AddWithoutValue("no-cursor", "n", "No mouse cursor/pointer", false); #if defined(FLUTTER_TARGET_BACKEND_GBM) || \