fix: pass --org-name to all templates and remove --application-id#35
Merged
ProjectAJ14 merged 1 commit intomainfrom Mar 24, 2026
Merged
fix: pass --org-name to all templates and remove --application-id#35ProjectAJ14 merged 1 commit intomainfrom
ProjectAJ14 merged 1 commit intomainfrom
Conversation
…ation-id --org-name was only wired into the flutter_app_for_mono_repo brick; plugin and mono-repo templates silently ignored it. --application-id was never functional since flutter create has no such flag. Closes #16 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
--org-namebeing silently ignored by plugin and mono-repo templates — now properly forwarded toflutter create --org--application-idoption which was never functional (flutter createhas no such flag; the bundle ID is derived from--org)--application-idfrom the arguments tableCloses #16
Test plan
nonstop create my_app --template app --org-name com.mycompanyand verify bundle ID iscom.mycompany.my_appnonstop create my_plugin --template plugin --org-name com.mycompanyand verify org is appliednonstop create my_project --template mono --org-name com.mycompanyand verify org is appliednonstop create my_app --application-id fooand verify it errors with "unrecognized option"🤖 Generated with Claude Code