diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..81519c3 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,31 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Flutter Build APK (Release)", + "type": "shell", + "command": "flutter", + "args": [ + "build", + "apk", + "--release", + "--dart-define-from-file=.env/flutter_defines.json" + ], + "group": "build", + "problemMatcher": [] + }, + { + "label": "Flutter Build App Bundle (Release)", + "type": "shell", + "command": "flutter", + "args": [ + "build", + "appbundle", + "--release", + "--dart-define-from-file=.env/flutter_defines.json" + ], + "group": "build", + "problemMatcher": [] + } + ] +}