-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRownd.podspec
More file actions
48 lines (40 loc) · 1.49 KB
/
Rownd.podspec
File metadata and controls
48 lines (40 loc) · 1.49 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Pod::Spec.new do |s|
s.name = "Rownd"
s.version = "4.0.1"
s.summary = "Rownd bindings for iOS"
s.description = <<-DESC
Rownd is a user management platform designed to make authentication
and user lifecycle easy, frictionless, and seamless for both devs and end-users
DESC
s.homepage = "https://github.com/rownd/ios"
s.license = { :type => "Apache 2.0", :file => "LICENSE.txt" }
s.author = {
"Rownd" => "support@rownd.io",
}
s.documentation_url = "https://github.com/rownd/ios"
s.source = {
:git => "https://github.com/rownd/ios.git",
:tag => s.version.to_s
}
s.ios.deployment_target = '14.0'
s.dependency 'JWTDecode', '~> 3.0.0'
s.dependency 'ReSwift', '~> 6.1.1'
s.dependency 'ReSwiftThunk', '~> 2.0.1'
s.dependency 'SwiftKeychainWrapper', '~> 4.0.1'
s.dependency 'Get', '~> 2.2.0'
s.dependency 'GoogleSignIn', '~> 7.0.0'
s.dependency 'lottie-ios', '~> 4.5.0'
s.dependency 'Factory', '~> 1.2.8'
s.dependency 'LBBottomSheet'
s.dependency 'AnyCodable'
s.dependency 'GzipSwift'
s.subspec 'LBBottomSheet' do |ss|
ss.source_files = 'Packages/LBBottomSheet/Sources/**/*'
end
s.subspec 'AnyCodable' do |ss|
ss.source_files = 'Packages/AnyCodable/Sources/**/*'
end
s.requires_arc = true
s.source_files = 'Sources/**/*'
s.swift_versions = [ "5.5", "5.4", "5.3", "5.2", "5.0" ]
end