forked from Cidaas/cidaas-sdk-ios-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cidaas.podspec
44 lines (39 loc) · 1.59 KB
/
Cidaas.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
41
42
43
44
#
# Be sure to run `pod lib lint Cidaas.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Cidaas'
s.version = '1.4.2'
s.summary = 'Native SDK for iOS providing login, registration and verification functionalities'
s.homepage = 'https://github.com/Cidaas/cidaas-sdk-ios-v2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Cidaas' => '[email protected]' }
s.source = { :git => 'https://github.com/Cidaas/cidaas-sdk-ios-v2.git', :tag => s.version }
s.ios.deployment_target = '11.0'
s.source_files = 'Cidaas/Classes/**/*'
s.dependency 'Alamofire', '~> 5.1'
s.dependency 'CryptoSwift', '~> 1.3'
s.dependency 'SwiftKeychainWrapper', '~> 3.4'
s.dependency 'AnyCodable-FlightSchool', '~> 0.4.0'
s.swift_version = '5.0'
s.subspec 'Core' do |core|
core.source_files = 'Cidaas/Classes/Core/**/*'
core.resources = 'Cidaas/Resources/**/*.*'
end
s.subspec 'Verification' do |verification|
verification.source_files = 'Cidaas/Classes/V2/Verification/**/*'
verification.dependency 'Cidaas/Core'
end
s.subspec 'Native' do |native|
native.source_files = 'Cidaas/Classes/V2/Native/**/*'
native.dependency 'Cidaas/Core'
end
s.subspec 'Consent' do |consent|
consent.source_files = 'Cidaas/Classes/V2/Consent/**/*'
consent.dependency 'Cidaas/Core'
end
end