From 60bdcf55fe8b2877ce2c295fe69bd146ea81cfbd Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Tue, 1 Dec 2020 21:24:21 -0800 Subject: [PATCH] ios_host_app Podfile search paths (#71525) --- .../ios_host_app/Host.xcodeproj/project.pbxproj | 2 -- dev/integration_tests/ios_host_app/Podfile | 9 ++++----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/dev/integration_tests/ios_host_app/Host.xcodeproj/project.pbxproj b/dev/integration_tests/ios_host_app/Host.xcodeproj/project.pbxproj index d8538ec7712..1c91f1d64d1 100644 --- a/dev/integration_tests/ios_host_app/Host.xcodeproj/project.pbxproj +++ b/dev/integration_tests/ios_host_app/Host.xcodeproj/project.pbxproj @@ -566,7 +566,6 @@ CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = S8QB4VV633; INFOPLIST_FILE = FlutterUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 14.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -587,7 +586,6 @@ CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = S8QB4VV633; INFOPLIST_FILE = FlutterUITests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 14.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/dev/integration_tests/ios_host_app/Podfile b/dev/integration_tests/ios_host_app/Podfile index a6c477fa2c7..9b0fe5c822f 100644 --- a/dev/integration_tests/ios_host_app/Podfile +++ b/dev/integration_tests/ios_host_app/Podfile @@ -5,9 +5,8 @@ load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb') target 'Host' do install_all_flutter_pods flutter_application_path - - target 'FlutterUITests' do - inherit! :search_paths - install_all_flutter_pods flutter_application_path - end +end + +target 'FlutterUITests' do + inherit! :search_paths end