Created
July 26, 2020 05:56
-
-
Save riscait/3309c37cd1772eeae67e8115ab065855 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Flutter Debug-Development", | |
"request": "launch", | |
"type": "dart", | |
"program": "lib/main_development.dart", | |
"args": [ | |
"--debug", | |
"--flavor", | |
"development", | |
] | |
}, | |
{ | |
"name": "Flutter Release-Development", | |
"request": "launch", | |
"type": "dart", | |
"program": "lib/main_development.dart", | |
"args": [ | |
"--release", | |
"--flavor", | |
"development", | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment