Compare commits

...

2 Commits

Author SHA1 Message Date
Imran Remtulla
a37509c5a3 Merge remote-tracking branch 'origin/dev' 2025-08-04 15:24:00 -04:00
Imran Remtulla
cb9ac4cba0 Include launch.json in git 2025-08-04 15:23:44 -04:00
2 changed files with 30 additions and 1 deletions

3
.gitignore vendored
View File

@@ -11,7 +11,8 @@
.svn/
.swiftpm/
migrate_working_dir/
.vscode/
.vscode/*
!.vscode/launch.json
# IntelliJ related
*.iml

28
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,28 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Obtainium",
"request": "launch",
"type": "dart",
"args":[ "--flavor", "normal" ]
},
{
"name": "Obtainium (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile",
"args":[ "--flavor", "normal" ]
},
{
"name": "Obtainium (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release",
"args":[ "--flavor", "normal" ]
}
]
}