We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got an exception because it is impossible to add element to fixed length list:
flutterw/packages/flutterw_build_aar/bin/flutterw_build_aar.dart
Line 22 in dfe70bf
Quick fix from my side was to rename argument arguments -> originalArguments
arguments
originalArguments
List<String> arguments = []..addAll(originalArguments);
But i would like to believe there should be more elegant solution
The text was updated successfully, but these errors were encountered:
fix: hyiso#20: add temporary growable list for arguments
16aef6a
[flutterw_build_aar: Unsupported operation: Cannot add to a fixed-length list](hyiso#20)
No branches or pull requests
I got an exception because it is impossible to add element to fixed length list:
flutterw/packages/flutterw_build_aar/bin/flutterw_build_aar.dart
Line 22 in dfe70bf
Quick fix from my side was to rename argument
arguments
->originalArguments
But i would like to believe there should be more elegant solution
The text was updated successfully, but these errors were encountered: