Skip to content

Commit

Permalink
Enforce minimum plugin version iOS 11 (#103545)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmagman committed May 13, 2022
1 parent 9f28b83 commit 036cae3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dev/devicelab/lib/tasks/plugin_tests.dart
Expand Up @@ -204,7 +204,7 @@ class $dartPluginClass {
podspecContent = podspecContent.replaceFirst(
versionString,
target == 'ios'
? "s.platform = :ios, '7.0'"
? "s.platform = :ios, '10.0'"
: "s.platform = :osx, '10.8'"
);
podspec.writeAsStringSync(podspecContent, flush: true);
Expand Down Expand Up @@ -240,8 +240,8 @@ class $dartPluginClass {
if (target == 'ios') {
// Plugins with versions lower than the app version should not have IPHONEOS_DEPLOYMENT_TARGET set.
// The plugintest plugin target should not have IPHONEOS_DEPLOYMENT_TARGET set since it has been lowered
// in _reduceDarwinPluginMinimumVersion to 7, which is below the target version of 9.
if (podsProjectContent.contains('IPHONEOS_DEPLOYMENT_TARGET = 7')) {
// in _reduceDarwinPluginMinimumVersion to 10, which is below the target version of 11.
if (podsProjectContent.contains('IPHONEOS_DEPLOYMENT_TARGET = 10')) {
throw TaskResult.failure('Plugin build setting IPHONEOS_DEPLOYMENT_TARGET not removed');
}
if (!podsProjectContent.contains(r'"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386";')) {
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_tools/bin/podhelper.rb
Expand Up @@ -34,7 +34,7 @@ def flutter_additional_ios_build_settings(target)
return unless target.platform_name == :ios

# [target.deployment_target] is a [String] formatted as "8.0".
inherit_deployment_target = target.deployment_target[/\d+/].to_i < 9
inherit_deployment_target = target.deployment_target[/\d+/].to_i < 11

# This podhelper script is at $FLUTTER_ROOT/packages/flutter_tools/bin.
# Add search paths from $FLUTTER_ROOT/bin/cache/artifacts/engine.
Expand Down

0 comments on commit 036cae3

Please sign in to comment.