Make build_aar_*_tests actually use release builds. (#48893)

This commit is contained in:
sjindel-google 2020-01-16 18:59:33 +01:00 committed by GitHub
parent 2459e1f288
commit ee1fa94b4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ Future<void> main() async {
await inDirectory(projectDir, () async {
await flutter(
'build',
options: <String>['aar', '--verbose'],
options: <String>['aar', '--release', '--verbose'],
);
});

View File

@ -44,7 +44,7 @@ Future<void> main() async {
await inDirectory(projectDir, () async {
await flutter(
'build',
options: <String>['aar', '--verbose'],
options: <String>['aar', '--verbose', '--release'],
);
});