-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlexaCore.podspec
31 lines (26 loc) · 1.05 KB
/
FlexaCore.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
Pod::Spec.new do |s|
s.name = "FlexaCore"
s.version = "1.0.10"
s.summary = "Flexa Core"
s.description = "Flexa Core 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 = "FlexaCore"
s.platform = :ios
s.swift_version = "5.1"
s.ios.deployment_target = '15.0'
s.source = { :git => "https://github.com/flexa/flexa-ios", :tag => s.version }
s.source_files = 'FlexaCore/Sources/**/*.{swift}'
s.dependency 'Factory', '~> 2.4.3'
s.dependency 'DeviceKit', '~> 5.0.0'
s.dependency 'KeychainAccess', '~> 4.2.2'
s.dependency 'SwiftUIIntrospect', "~> 0.12.0"
s.dependency 'FlexaNetworking', "~> #{s.version}"
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'FlexaCore/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