Skip to content

Commit 114dd89

Browse files
authored
Update flutter build apk -h to indicate that target arch is not supported in debug mode. (#154111)
Part of #153359
1 parent 1a5cbbf commit 114dd89

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/flutter_tools/lib/src/commands/build_apk.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ class BuildApkCommand extends BuildSubCommand {
5050
..addMultiOption('target-platform',
5151
defaultsTo: <String>['android-arm', 'android-arm64', 'android-x64'],
5252
allowed: <String>['android-arm', 'android-arm64', 'android-x86', 'android-x64'],
53-
help: 'The target platform for which the app is compiled.',
53+
// https://github.com/flutter/flutter/issues/153359 tracks debug build type support.
54+
help:
55+
'The target platform for which the app is compiled. Supports release but not debug build types.',
5456
);
5557
usesTrackWidgetCreation(verboseHelp: verboseHelp);
5658
}

0 commit comments

Comments
 (0)