mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"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": []
|
|
}
|
|
]
|
|
}
|