forked from HabitRPG/habitica-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
130 lines (99 loc) · 2.13 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
platform :ios, '9.3'
use_frameworks!
inhibit_all_warnings!
workspace 'Habitica'
plugin 'cocoapods-keys', {
:project => "Habitica",
:keys => [
"GoogleClient",
"GoogleRedirectUrl",
"AmplitudeApiKey",
"ItunesSharedSecret",
"StagingKey",
]
}
def reactive_pods
pod 'ReactiveCocoa', '~> 10'
end
def test_pods
pod 'Quick', '~> 1.2.0'
pod 'Nimble', '~> 7.3'
pod 'iOSSnapshotTestCase'
end
target 'Habitica' do
project 'Habitica.xcodeproj'
pod 'KeychainAccess'
pod 'VTAcknowledgementsViewController'
pod 'DateTools'
pod 'XLForm'
pod 'FLEX', '~> 3.0', :configurations => ['Debug']
pod 'MRProgress'
pod 'KLCPopup'
pod 'Amplitude-iOS', '~> 4.8.0'
pod 'Masonry'
pod "SlackTextViewController"
pod 'AppAuth'
pod 'FBSDKCoreKit', '~> 5'
pod 'FBSDKLoginKit', '~> 5'
pod 'Firebase/Core'
pod 'Fabric'
pod 'Crashlytics'
pod 'Firebase/Performance'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Messaging'
reactive_pods
pod 'SwiftyStoreKit'
pod 'Down'
pod 'PinLayout'
pod 'PopupDialog'
pod 'SwiftLint'
pod 'Eureka'
pod 'RealmSwift'
pod 'Kingfisher'
pod 'SwiftGen'
pod "DeepLinkKit"
pod 'SimulatorStatusMagic', :configurations => ['Debug']
pod 'OHHTTPStubs/Swift'
pod 'Prelude'
pod 'Magnetic'
pod 'Charts'
target 'HabiticaTests' do
inherit! :search_paths
test_pods
end
target 'Habitica Intents' do
pod 'KeychainAccess'
inherit! :search_paths
end
end
target 'Habitica Snapshots' do
pod 'KeychainAccess'
test_pods
end
target "Habitica ModelsTests" do
project 'Habitica Models/Habitica Models.xcodeproj'
test_pods
end
target "Habitica API Client" do
project 'Habitica API Client/Habitica API Client.xcodeproj'
reactive_pods
pod 'Fabric'
pod 'Crashlytics'
pod 'OHHTTPStubs/Swift'
pod 'Prelude'
target 'Habitica API ClientTests' do
inherit! :search_paths
test_pods
end
end
target "Habitica Database" do
project 'Habitica Database/Habitica Database.xcodeproj'
pod "RealmSwift"
pod 'Fabric'
pod 'Crashlytics'
reactive_pods
target 'Habitica DatabaseTests' do
inherit! :search_paths
test_pods
end
end