@@ -37,6 +37,7 @@ Usage: very_good create flutter_app <project-name> [arguments]
3737
3838 --org-name The organization for this new project.
3939 (defaults to "com.example.verygoodcore")
40+ --publishable Whether the generated project is intended to be published.
4041 --application-id The bundle identifier on iOS or application id on Android. (defaults to <org-name>.<project-name>)
4142 --platforms The platforms supported by the app. By default, all platforms are enabled. Example: --platforms=android,ios
4243
@@ -188,6 +189,7 @@ void main() {
188189 'project_name' : 'my_app' ,
189190 'description' : '' ,
190191 'org_name' : 'com.example.verygoodcore' ,
192+ 'publishable' : false ,
191193 'application_id' : 'xyz.app.my_app' ,
192194 'platforms' : const [
193195 'android' ,
@@ -219,6 +221,7 @@ void main() {
219221 'project_name' : 'my_app' ,
220222 'description' : '' ,
221223 'org_name' : 'com.example.verygoodcore' ,
224+ 'publishable' : false ,
222225 'application_id' : 'xyz.app.my_app' ,
223226 'platforms' : const ['android' , 'ios' ],
224227 },
@@ -254,6 +257,7 @@ void main() {
254257 'project_name' : 'my_app' ,
255258 'description' : '' ,
256259 'org_name' : 'com.example.verygoodcore' ,
260+ 'publishable' : false ,
257261 'application_id' : 'xyz.app.my_app' ,
258262 'platforms' : const [
259263 'android' ,
0 commit comments