mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-08-26 05:59:40 +00:00
Implemented Ac functionality, and bug fixes
This commit is contained in:
105
.vscode/launch.json
vendored
105
.vscode/launch.json
vendored
@ -1,60 +1,61 @@
|
||||
{
|
||||
// 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": "Iphone 15 Pro Max",
|
||||
// "request": "launch",
|
||||
// "type": "dart",
|
||||
// "deviceId": "0147FC23-3D6C-406A-BE2C-9E67BAF3DA9B"
|
||||
// },
|
||||
// {
|
||||
// "name": "Faris Iphone ",
|
||||
// "request": "launch",
|
||||
// "type": "dart",
|
||||
// "deviceId": "00008101-00050C1C02FA001E"
|
||||
// },
|
||||
// {
|
||||
// "name": "Iphone 15 Pro",
|
||||
// "request": "launch",
|
||||
// "type": "dart",
|
||||
// "deviceId": "B26AF31B-D38E-4485-9628-528E0DB29789"
|
||||
// },
|
||||
// {
|
||||
// "name": "Iphone SE",
|
||||
// "request": "launch",
|
||||
// "type": "dart",
|
||||
// "deviceId": "A0274205-52D6-48CC-8344-AB4AE3082DE4",
|
||||
|
||||
// },
|
||||
|
||||
{
|
||||
"name": "syncrow-app",
|
||||
"request": "launch",
|
||||
"type": "dart"
|
||||
},
|
||||
{
|
||||
"name": "syncrow-app (profile mode)",
|
||||
|
||||
"name": "DEVELOPMENT",
|
||||
|
||||
"request": "launch",
|
||||
|
||||
"type": "dart",
|
||||
"flutterMode": "profile"
|
||||
},
|
||||
{
|
||||
"name": "syncrow-app (release mode)",
|
||||
|
||||
"args": [
|
||||
|
||||
"--dart-define",
|
||||
|
||||
"FLAVOR=development"
|
||||
|
||||
],
|
||||
|
||||
"flutterMode": "debug"
|
||||
|
||||
},{
|
||||
|
||||
"name": "STAGING",
|
||||
|
||||
"request": "launch",
|
||||
|
||||
"type": "dart",
|
||||
"flutterMode": "release"
|
||||
}
|
||||
],
|
||||
// "compounds": [
|
||||
// {
|
||||
// "name": "All Device",
|
||||
// "configurations": [
|
||||
// "Iphone 15 Pro Max",
|
||||
// "Iphone SE"
|
||||
// ]
|
||||
// }
|
||||
// ]
|
||||
|
||||
"args": [
|
||||
|
||||
"--dart-define",
|
||||
|
||||
"FLAVOR=staging"
|
||||
|
||||
],
|
||||
|
||||
"flutterMode": "debug"
|
||||
|
||||
},{
|
||||
|
||||
"name": "PRODUCTION",
|
||||
|
||||
"request": "launch",
|
||||
|
||||
"type": "dart",
|
||||
|
||||
"args": [
|
||||
|
||||
"--dart-define",
|
||||
|
||||
"FLAVOR=production"
|
||||
|
||||
],
|
||||
|
||||
"flutterMode": "debug"
|
||||
|
||||
},
|
||||
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user