Skip to content

Commit

Permalink
Update launch configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedLSayed9 committed Jul 26, 2023
1 parent 58db0cc commit 74cba9c
Show file tree
Hide file tree
Showing 33 changed files with 2,832 additions and 283 deletions.
10 changes: 5 additions & 5 deletions .metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This file should be version controlled.

version:
revision: 135454af32477f815a7525073027a3ff9eff1bfd
revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
channel: stable

project_type: app
Expand All @@ -13,11 +13,11 @@ project_type: app
migration:
platforms:
- platform: root
create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
- platform: macos
create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
create_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8
base_revision: f468f3366c26a5092eb964a230ce7892fda8f2f8

# User provided section

Expand Down
33 changes: 30 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,51 @@
"version": "0.2.0",
"configurations": [
{
"name": "Deliverzler",
"name": "Run",
"type": "dart",
"request": "launch",
"program": "lib/main.dart"
},
{
"name": "Deliverzler (profile mode)",
"name": "Run (profile mode)",
"type": "dart",
"request": "launch",
"program": "lib/main.dart",
"flutterMode": "profile"
},
{
"name": "Deliverzler (release mode)",
"name": "Run (release mode)",
"type": "dart",
"request": "launch",
"program": "lib/main.dart",
"flutterMode": "release"
},
{
"name": "Run Android 13 (API 33)",
"type": "dart",
"request": "launch",
"program": "lib/main.dart",
"deviceId": "emulator-5554"
},
{
"name": "Run iPhone 14 Pro Max",
"type": "dart",
"request": "launch",
"program": "lib/main.dart",
"deviceId": "1F19CF3B-1BA3-484E-9EFA-8ECC2C9C4630"
},
{
"name": "Run macOS 13.4.1 (Rosetta)",
"type": "dart",
"request": "launch",
"program": "lib/main.dart",
"deviceId": "macos"
}
],
"compounds": [
{
"name": "Run Android & iPhone",
"configurations": ["Run Android 13 (API 33)", "Run iPhone 14 Pro Max"]
}
]
}
Loading

0 comments on commit 74cba9c

Please sign in to comment.