Add configuration for production builds for Android

This commit is contained in:
vishnukvmd 2022-11-14 18:12:07 +05:30
parent fba694de68
commit ef0c302c94

9
.vscode/launch.json vendored
View file

@ -29,11 +29,18 @@
"args": ["--dart-define", "endpoint=http://192.168.1.30:8080"]
},
{
"name": "Prod",
"name": "iOS Prod",
"request": "launch",
"type": "dart",
"program": "lib/main.dart",
"args": ["--target", "lib/main.dart"]
},
{
"name": "Android Prod",
"request": "launch",
"type": "dart",
"program": "lib/main.dart",
"args": ["--target", "lib/main.dart", "--flavor", "independent"]
}
]
}