44 lines
956 B
JSON
44 lines
956 B
JSON
{
|
|
"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": []
|
|
},
|
|
{
|
|
"label": "Flutter Build iOS IPA (Release)",
|
|
"type": "shell",
|
|
"command": "flutter",
|
|
"args": [
|
|
"build",
|
|
"ipa",
|
|
"--release",
|
|
"--dart-define-from-file=.env/flutter_defines.json"
|
|
],
|
|
"group": "build",
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|