2018-09-14 00:21:51 +00:00
|
|
|
#
|
2020-06-02 23:45:58 +00:00
|
|
|
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
|
|
|
|
# Run `pod lib lint flutterplugintest.podspec' to validate before publishing.
|
2018-09-14 00:21:51 +00:00
|
|
|
#
|
|
|
|
Pod::Spec.new do |s|
|
2023-11-26 23:02:46 +00:00
|
|
|
s.name = 'flutter_inappwebview_ios'
|
2018-09-14 00:21:51 +00:00
|
|
|
s.version = '0.0.1'
|
|
|
|
s.summary = 'A new Flutter plugin.'
|
|
|
|
s.description = <<-DESC
|
|
|
|
A new Flutter plugin.
|
|
|
|
DESC
|
|
|
|
s.homepage = 'http://example.com'
|
|
|
|
s.license = { :file => '../LICENSE' }
|
|
|
|
s.author = { 'Your Company' => 'email@example.com' }
|
|
|
|
s.source = { :path => '.' }
|
|
|
|
s.source_files = 'Classes/**/*'
|
2018-10-14 11:58:42 +00:00
|
|
|
s.resources = 'Storyboards/**/*.storyboard'
|
2018-09-14 00:21:51 +00:00
|
|
|
s.public_header_files = 'Classes/**/*.h'
|
|
|
|
s.dependency 'Flutter'
|
2020-06-02 23:45:58 +00:00
|
|
|
|
|
|
|
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
|
2019-10-29 11:16:31 +00:00
|
|
|
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
|
2023-05-16 08:49:26 +00:00
|
|
|
|
|
|
|
s.libraries = 'swiftCoreGraphics'
|
|
|
|
|
|
|
|
s.xcconfig = {
|
|
|
|
'LIBRARY_SEARCH_PATHS' => '$(SDKROOT)/usr/lib/swift',
|
|
|
|
}
|
|
|
|
|
2019-10-24 16:27:28 +00:00
|
|
|
s.swift_version = '5.0'
|
2021-02-22 11:16:23 +00:00
|
|
|
|
2023-09-26 08:19:45 +00:00
|
|
|
s.platforms = { :ios => '11.0' }
|
2021-02-22 11:16:23 +00:00
|
|
|
s.dependency 'OrderedSet', '~>5.0'
|
2023-09-26 08:19:45 +00:00
|
|
|
|
2021-02-03 14:17:15 +00:00
|
|
|
s.default_subspec = 'Core'
|
2023-09-26 08:19:45 +00:00
|
|
|
|
2021-02-03 14:17:15 +00:00
|
|
|
s.subspec 'Core' do |core|
|
2022-10-06 15:10:08 +00:00
|
|
|
core.platform = :ios, '9.0'
|
2021-02-03 14:17:15 +00:00
|
|
|
end
|
2018-09-14 00:21:51 +00:00
|
|
|
end
|