1
0
mirror of https://github.com/flutter/samples.git synced 2026-04-04 02:32:25 +00:00

Update federated_plugin runners (#972)

This commit is contained in:
Brett Morgan
2022-01-05 12:35:50 +11:00
committed by GitHub
parent 26d88f1799
commit 9102cb4653
79 changed files with 678 additions and 687 deletions

View File

@@ -34,4 +34,5 @@ Icon?
.tags*
/Flutter/Generated.xcconfig
/Flutter/ephemeral/
/Flutter/flutter_export_environment.sh

View File

@@ -1,6 +1,6 @@
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint federated_plugin.podspec' to validate before publishing.
# Run `pod lib lint federated_plugin.podspec` to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'federated_plugin'
@@ -15,9 +15,9 @@ A new flutter plugin project.
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.platform = :ios, '8.0'
s.platform = :ios, '9.0'
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = '5.0'
end