We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fea1a63 + c39684c commit 300c65bCopy full SHA for 300c65b
1 file changed
lib/common/utils/shell/shel.utils.dart
@@ -33,9 +33,10 @@ class ShellUtils {
33
) async {
34
LogService.info('Running `flutter create $path` …');
35
36
- await run(
37
- 'flutter create --no-pub -i $iosLang -a $androidLang --org $org'
38
- ' "$path"',
+ // Note: -i and -a flags are only supported for --template=plugin
+ // For regular Flutter projects, Flutter uses Swift/Kotlin by default
+ await run(
39
+ 'flutter create --no-pub --org $org "$path"',
40
verbose: true);
41
}
42
0 commit comments