-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
flutter_inappwebview_ios.podspec
executable file
·40 lines (33 loc) · 1.23 KB
/
flutter_inappwebview_ios.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint flutterplugintest.podspec' to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'flutter_inappwebview_ios'
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/**/*'
s.resources = 'Storyboards/**/*.storyboard'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
# 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' }
s.libraries = 'swiftCoreGraphics'
s.xcconfig = {
'LIBRARY_SEARCH_PATHS' => '$(SDKROOT)/usr/lib/swift',
}
s.swift_version = '5.0'
s.platforms = { :ios => '11.0' }
s.dependency 'OrderedSet', '~>5.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.platform = :ios, '9.0'
end
end