forked from openedx/openedx-app-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
102 lines (81 loc) · 2.77 KB
/
Podfile
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
platform :ios, '14.0'
use_frameworks! :linkage => :static
abstract_target "App" do
#Code style
pod 'SwiftLint', '~> 0.5'
#CodeGen for resources
pod 'SwiftGen', '~> 6.6'
target "OpenEdX" do
inherit! :complete
workspace './OpenEdX.xcodeproj'
end
target "Core" do
project './Core/Core.xcodeproj'
workspace './Core/Core.xcodeproj'
#Networking
pod 'Alamofire', '~> 5.7'
#Keychain
pod 'KeychainSwift', '~> 20.0'
#SwiftUI backward UIKit access
#pod 'Introspect', '~> 0.6'
pod 'SwiftUIIntrospect', '~> 0.8'
pod 'Kingfisher', '~> 7.8'
pod 'Swinject', '2.8.3'
end
target "Authorization" do
project './Authorization/Authorization.xcodeproj'
workspace './Authorization/Authorization.xcodeproj'
target 'AuthorizationTests' do
pod 'SwiftyMocky', :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => '4.2.0'
end
end
target "Discovery" do
project './Discovery/Discovery.xcodeproj'
workspace './Discovery/Discovery.xcodeproj'
target 'DiscoveryUnitTests' do
pod 'SwiftyMocky', :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => '4.2.0'
end
end
target "WhatsNew" do
project './WhatsNew/WhatsNew.xcodeproj'
workspace './WhatsNew/WhatsNew.xcodeproj'
target 'WhatsNewTests' do
pod 'SwiftyMocky', :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => '4.2.0'
end
end
target "Dashboard" do
project './Dashboard/Dashboard.xcodeproj'
workspace './Dashboard/Dashboard.xcodeproj'
target 'DashboardTests' do
pod 'SwiftyMocky', :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => '4.2.0'
end
end
target "Profile" do
project './Profile/Profile.xcodeproj'
workspace './Profile/Profile.xcodeproj'
target 'ProfileTests' do
pod 'SwiftyMocky', :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => '4.2.0'
end
end
target "Course" do
project './Course/Course.xcodeproj'
workspace './Course/Course.xcodeproj'
target 'CourseTests' do
pod 'SwiftyMocky', :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => '4.2.0'
end
end
target "Discussion" do
project './Discussion/Discussion.xcodeproj'
workspace './Discussion/Discussion.xcodeproj'
target 'DiscussionTests' do
pod 'SwiftyMocky', :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => '4.2.0'
end
end
target "Theme" do
project './Theme/Theme.xcodeproj'
workspace './Theme/Theme.xcodeproj'
target 'ThemeTests' do
pod 'SwiftyMocky', :git => 'https://github.com/MakeAWishFoundation/SwiftyMocky.git', :tag => '4.2.0'
end
end
end