-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathFula.podspec
More file actions
19 lines (16 loc) · 826 Bytes
/
Fula.podspec
File metadata and controls
19 lines (16 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'Fula' # Name for your pod
s.version = '1.58.0'
s.summary = 'Go-fula for iOS'
s.homepage = 'https://github.com/functionland/go-fula'
s.author = { 'Functionland' => 'info@fx.land' }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.platform = :ios
# change the source location
s.source = { :http => "https://github.com/functionland/go-fula/releases/download/v#{s.version}/cocoapods-bundle.zip" }
s.ios.deployment_target = '13.0'
s.vendored_framework = 'Fula.xcframework'
s.static_framework = true
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end