$ flutter build apk --config-only
Downloading android-arm-profile/darwin-x64 tools... 287ms
Downloading android-arm-release/darwin-x64 tools... 134ms
Downloading android-arm64-profile/darwin-x64 tools... 142ms
Downloading android-arm64-release/darwin-x64 tools... 132ms
Downloading android-x64-profile/darwin-x64 tools... 125ms
Downloading android-x64-release/darwin-x64 tools... 123ms
Config complete.
The "Config complete." part is a but odd, since the tool doesn't announce other commands are "complete", including flutter build ios --config-only or flutter build macos --config-only
This is a really tiny nit, and this command isn't used by most flutter devs.
Suggest removing this log line:
|
_logger.printStatus('Config complete.'); |
Will have to detect another way that the
config-only logic stopped there:
|
expect(result.stdout, contains(RegExp(r'Config complete'))); |
The "Config complete." part is a but odd, since the tool doesn't announce other commands are "complete", including
flutter build ios --config-onlyorflutter build macos --config-onlyThis is a really tiny nit, and this command isn't used by most flutter devs.
Suggest removing this log line:
flutter/packages/flutter_tools/lib/src/android/gradle.dart
Line 455 in 5c7d9d0
Will have to detect another way that the
config-onlylogic stopped there:flutter/packages/flutter_tools/test/integration.shard/flutter_build_config_only_test.dart
Line 54 in 5c7d9d0