File tree Expand file tree Collapse file tree 4 files changed +19
-2
lines changed Expand file tree Collapse file tree 4 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -24,3 +24,8 @@ group 'AlamofireGroup' do
24
24
pod 'AlamofireImage', '3.6.0'
25
25
pod 'AlamofireActivityLogger', '2.5.0'
26
26
end
27
+
28
+ group 'Subspecs'
29
+ pod 'AppAuth/Core'
30
+ pod 'AppAuth/ExternalUserAgent'
31
+ end
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import UI.TTTAttributedLabel
16
16
17
17
import Networking. AFNetworking
18
18
import Networking. SDWebImage
19
+ import Subspecs. AppAuth
19
20
20
21
// Merged Swift Pods cannot be import individually, only all or none.
21
22
import MergedSwiftPods
@@ -50,6 +51,11 @@ class ViewController: UIViewController {
50
51
// SnapKit Usage
51
52
let box = UIView ( )
52
53
box. snp. makeConstraints { _ in }
54
+
55
+ let authorizationEndpoint = URL ( string: " https://accounts.google.com/o/oauth2/v2/auth " ) !
56
+ let tokenEndpoint = URL ( string: " https://www.googleapis.com/oauth2/v4/token " ) !
57
+ let configuration = OIDServiceConfiguration ( authorizationEndpoint: authorizationEndpoint,
58
+ tokenEndpoint: tokenEndpoint)
53
59
}
54
60
}
55
61
Original file line number Diff line number Diff line change @@ -12,4 +12,5 @@ target 'PodMergeExample' do
12
12
pod 'UI' , :path => 'MergedPods/UI'
13
13
pod 'AlamofireGroup' , :path => 'MergedPods/AlamofireGroup'
14
14
pod 'MergedSwiftPods' , :path => 'MergedPods/MergedSwiftPods'
15
+ pod 'Subspecs' , :path => 'MergedPods/Subspecs'
15
16
end
Original file line number Diff line number Diff line change 3
3
- MergedSwiftPods (1.0.0)
4
4
- Networking (1.0.0)
5
5
- Nuke (8.3.1)
6
+ - Subspecs (1.0.0)
6
7
- UI (1.0.0)
7
8
8
9
DEPENDENCIES:
9
10
- AlamofireGroup (from `MergedPods/AlamofireGroup`)
10
11
- MergedSwiftPods (from `MergedPods/MergedSwiftPods`)
11
12
- Networking (from `MergedPods/Networking`)
12
13
- Nuke
14
+ - Subspecs (from `MergedPods/Subspecs`)
13
15
- UI (from `MergedPods/UI`)
14
16
15
17
SPEC REPOS:
16
- https://cdn.cocoapods.org/ :
18
+ trunk :
17
19
- Nuke
18
20
19
21
EXTERNAL SOURCES:
@@ -23,6 +25,8 @@ EXTERNAL SOURCES:
23
25
:path: MergedPods/MergedSwiftPods
24
26
Networking:
25
27
:path: MergedPods/Networking
28
+ Subspecs:
29
+ :path: MergedPods/Subspecs
26
30
UI:
27
31
:path: MergedPods/UI
28
32
@@ -31,8 +35,9 @@ SPEC CHECKSUMS:
31
35
MergedSwiftPods: 86f52fdd7411987cd39e6c80e709ef0de0126fd3
32
36
Networking: 844633d13d2328a829083b24ffaee99aea51c1de
33
37
Nuke: 85fb80f8df0cb26c28d2f4e0cb7fb93bcd6548d3
38
+ Subspecs: 634e12dffc5b250b231410781ffa7b7c2c665b7a
34
39
UI: 2aa82721ee430cd2f0ab314904bbe1a281fa2ff9
35
40
36
- PODFILE CHECKSUM: 88ffe01efb39e0f819cf88bf11786182ab6f4441
41
+ PODFILE CHECKSUM: bd8310add23574b4f0321b19ffa6de67ba186782
37
42
38
43
COCOAPODS: 1.9.1
You can’t perform that action at this time.
0 commit comments