-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFlexaUICore.podspec
More file actions
31 lines (25 loc) · 1.02 KB
/
FlexaUICore.podspec
File metadata and controls
31 lines (25 loc) · 1.02 KB
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
Pod::Spec.new do |s|
s.name = "FlexaUICore"
s.version = "1.1.4"
s.summary = "Spend UI"
s.description = "Spend UI module by Flexa"
s.homepage = "https://github.com/flexa/flexa-ios"
s.authors = "Flexa Network Inc.F <developers@flexa.network> (https://developer.flexa.network)"
s.license = { :type => 'MIT' }
s.module_name = "FlexaUICore"
s.platform = :ios
s.swift_version = "5.1"
s.ios.deployment_target = '16.0'
s.source = { :git => "https://github.com/flexa/flexa-ios", :tag => s.version }
s.source_files = 'FlexaUICore/Sources/**/*.{swift}'
s.dependency 'SwiftUIIntrospect', "~> 26.0.0"
s.pod_target_xcconfig = {
'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => ENV['FX_ENABLE_GLASS'] != '0' ? 'FX_ENABLE_GLASS' : ''
}
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'FlexaUICore/Tests/**/*.{swift}'
test_spec.dependency 'Nimble', '~> 13.2.0'
test_spec.dependency 'Quick', '~> 7.0.0'
test_spec.dependency 'Fakery', '~> 5.1.0'
end
end