We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f3257 commit c450908Copy full SHA for c450908
script/tool/lib/src/create_all_packages_app_command.dart
@@ -126,9 +126,8 @@ class CreateAllPackagesAppCommand extends PackageCommand {
126
final StringBuffer newGradle = StringBuffer();
127
for (final String line in gradleFile.readAsLinesSync()) {
128
if (line.contains('minSdkVersion')) {
129
- // minSdkVersion 20 is required by Google maps.
130
- // minSdkVersion 19 is required by WebView.
131
- newGradle.writeln('minSdkVersion 20');
+ // minSdkVersion 21 is required by camera_android.
+ newGradle.writeln('minSdkVersion 21');
132
} else if (line.contains('compileSdkVersion')) {
133
// compileSdkVersion 33 is required by local_auth.
134
newGradle.writeln('compileSdkVersion 33');
0 commit comments