{ "version": "2.0.0", "tasks": [ { "label": "Build (Android)", "type": "shell", "command": "flutter build apk", "problemMatcher": [], "group": { "kind": "build", "isDefault": true } }, { "label": "Install (Android)", "type": "shell", "command": "adb install build\\app\\outputs\\flutter-apk\\app-release.apk", "problemMatcher": [] }, { "label": "Clean", "type": "shell", "command": "flutter clean && flutter pub get", "problemMatcher": [] }, { "label": "Clean & Build (Android)", "dependsOrder": "sequence", "dependsOn": [ "Clean", "Build (Android)" ], "problemMatcher": [] }, { "label": "Clean & Install (Android)", "dependsOrder": "sequence", "dependsOn": [ "Clean", "Build (Android)", "Install (Android)", ], "problemMatcher": [] }, { "label": "Build & Install (Android)", "dependsOrder": "sequence", "dependsOn": [ "Build (Android)", "Install (Android)" ], "problemMatcher": [] }, { "label": "Show upgradable dependencies", "type": "shell", "command": "flutter pub outdated", "problemMatcher": [] }, { "label": "Validate translations", "type": "shell", "command": "flutter pub run flutter_i18n diff en.json pt.json", "problemMatcher": [] } ] }