-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
36 lines (28 loc) · 820 Bytes
/
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
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
project 'Debuggit.xcodeproj'
def shared_pods
pod 'Alamofire', '~> 5.0.0-beta.7'
pod 'SwiftyJSON', '~> 5.0.0'
pod 'IQKeyboardManagerSwift', '~> 6.3.0'
pod 'KMPlaceholderTextView', '~> 1.4.0'
pod 'RNCryptor', '~> 5.1.0'
pod 'ReachabilitySwift', '~> 4.3.1'
end
target 'DebuggIt' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
use_modular_headers!
# Pods for DebuggIt
shared_pods
end
target 'DebuggItDemo' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for DebuggIt
shared_pods
end
target 'DebuggItTests' do
use_frameworks!
shared_pods
end