downloads and offline playback

This commit is contained in:
Dr-Blank 2024-08-20 08:36:39 -04:00
parent 1c95d1e4bb
commit c24541f1cd
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
38 changed files with 1590 additions and 109 deletions

31
.vscode/tasks.json vendored
View file

@ -32,6 +32,37 @@
"message": 4
}
}
},
// flutter build apk --release
{
"icon": { "id": "package", "color": "terminal.ansiGreen" },
"label": "flutter build release APK",
"type": "shell",
"command": "flutter build apk --release",
"group": {
"kind": "none",
"isDefault": false
},
"detail": "Building APK in release mode",
"presentation": {
"revealProblems": "onProblem",
"reveal": "always",
"panel": "dedicated"
},
"runOptions": {
"instanceLimit": 1
},
"problemMatcher": {
"owner": "dart",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
}
}
]
}