-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsplitio_ios.podspec
More file actions
24 lines (23 loc) · 900 Bytes
/
splitio_ios.podspec
File metadata and controls
24 lines (23 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
# Run `pod lib lint splitio_ios.podspec` to validate before publishing.
#
Pod::Spec.new do |s|
s.name = 'splitio_ios'
s.version = '0.9.0'
s.summary = 'split.io official Flutter plugin.'
s.description = <<-DESC
split.io official Flutter plugin.
DESC
s.homepage = 'http://split.io'
s.license = { :file => '../LICENSE' }
s.author = { 'Split' => 'support@split.io' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.dependency 'Split', '~> 3.6.0'
s.platform = :ios, '9.0'
# 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