From fe625b4fc71f58994ff133154d5a79745cb81e3a Mon Sep 17 00:00:00 2001 From: stuartmorgan Date: Mon, 9 Jan 2023 10:02:11 -0800 Subject: [PATCH] [tool] Don't add Guava in the all-packages app (#6747) It's not clear why we are adding an outdated version of Guava; it is likely cruft, so this test removing it. --- script/tool/lib/src/create_all_packages_app_command.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/script/tool/lib/src/create_all_packages_app_command.dart b/script/tool/lib/src/create_all_packages_app_command.dart index 12ec17da139a..4660413bc937 100644 --- a/script/tool/lib/src/create_all_packages_app_command.dart +++ b/script/tool/lib/src/create_all_packages_app_command.dart @@ -138,9 +138,6 @@ class CreateAllPackagesAppCommand extends PackageCommand { if (line.contains('defaultConfig {')) { newGradle.writeln(' multiDexEnabled true'); } else if (line.contains('dependencies {')) { - newGradle.writeln( - " implementation 'com.google.guava:guava:27.0.1-android'\n", - ); // Tests for https://github.com/flutter/flutter/issues/43383 newGradle.writeln( " implementation 'androidx.lifecycle:lifecycle-runtime:2.2.0-rc01'\n",