-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathStitchSDK.podspec
83 lines (68 loc) · 2.86 KB
/
StitchSDK.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Pod::Spec.new do |spec|
spec.name = "StitchSDK"
spec.version = "6.4.0"
spec.summary = "Stitch"
spec.homepage = "https://github.com/mongodb/stitch-ios-sdk"
spec.license = "Apache2"
spec.authors = {
"Jason Flax" => "[email protected]",
"Adam Chelminski" => "[email protected]",
"Eric Daniels" => "[email protected]",
}
spec.platform = :ios, "11.0"
spec.source = {
:git => "https://github.com/mongodb/stitch-ios-sdk.git",
:branch => "master", :tag => "6.4.0",
:submodules => true
}
spec.ios.deployment_target = "11.0"
spec.default_subspec = 'StitchSDK'
# pod "StitchSDK/StitchCoreSDK", "~> 4.0"
spec.subspec "StitchCoreSDK" do |core|
core.dependency "StitchCoreSDK", "= 6.4.0"
end
# pod "StitchSDK/StitchCoreAWSService", "~> 4.0"
spec.subspec "StitchCoreAWSService" do |core_aws_service|
core_aws_service.dependency 'StitchCoreAWSService', '= 6.4.0'
end
# pod "StitchSDK/StitchCoreHTTPService", "~> 4.0"
spec.subspec "StitchCoreHTTPService" do |core_http_service|
core_http_service.dependency 'StitchCoreHTTPService', '= 6.4.0'
end
# pod "StitchSDK/StitchCoreRemoteMongoDBService", "~> 4.0"
spec.subspec "StitchCoreRemoteMongoDBService" do |core_remote_mongodb_service|
core_remote_mongodb_service.dependency 'StitchCoreRemoteMongoDBService', '= 6.4.0'
end
# pod "StitchSDK/StitchCoreTwilioService", "~> 4.0"
spec.subspec "StitchCoreTwilioService" do |core_twilio_service|
core_twilio_service.dependency 'StitchCoreTwilioService', '= 6.4.0'
end
# pod "StitchSDK/StitchCore", "~> 4.0"
spec.subspec "StitchCore" do |ios_core|
ios_core.dependency 'StitchCoreSDK', '= 6.4.0'
end
# pod "StitchSDK/StitchAWSService", "~> 4.0"
spec.subspec "StitchAWSService" do |aws_service|
aws_service.dependency 'StitchAWSService', '= 6.4.0'
end
# pod "StitchSDK/StitchHTTPService", "~> 4.0"
spec.subspec "StitchHTTPService" do |http_service|
http_service.dependency 'StitchHTTPService', '= 6.4.0'
end
# pod "StitchSDK/StitchRemoteMongoDBService", "~> 4.0"
spec.subspec "StitchRemoteMongoDBService" do |remote_mongodb_service|
remote_mongodb_service.dependency 'StitchRemoteMongoDBService', '= 6.4.0'
end
# pod "StitchSDK/StitchTwilioService", "~> 4.0"
spec.subspec "StitchTwilioService" do |twilio_service|
twilio_service.dependency 'StitchTwilioService', '= 6.4.0'
end
# pod "StitchSDK/StitchFCMService", "~> 4.0"
spec.subspec "StitchFCMService" do |fcm_service|
fcm_service.dependency 'StitchFCMService', '= 6.4.0'
end
# pod "StitchSDK", "~> 4.0"
spec.subspec "StitchSDK" do |stitchSDK|
stitchSDK.dependency "StitchSDK/StitchRemoteMongoDBService"
end
end