diff --git a/.gitignore b/.gitignore index c969d8b..8e5cabf 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,8 @@ .svn/ .swiftpm/ migrate_working_dir/ -.vscode/ +.vscode/* +!.vscode/launch.json # IntelliJ related *.iml diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..da2c386 --- /dev/null +++ b/.vscode/launch.json @@ -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" ] + } + ] +} \ No newline at end of file