-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
44 lines (36 loc) · 1.36 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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
target 'NimbleSurvey' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
# Pods for NimbleSurvey
pod 'SwiftyComponent', :git => 'https://github.com/markgravity/swifty-component.git', :tag => 'v0.1.0'
pod 'SwiftyBase', :git => 'https://github.com/markgravity/swifty-base.git', :tag => 'v0.1.0'
pod 'SwiftyPopup', :git => 'https://github.com/markgravity/swifty-popup.git', :tag => 'v0.1.0'
pod 'LNZCollectionLayouts', '~> 1.2.2'
pod 'AlamofireNetworkActivityLogger', '~> 3.0'
pod 'Burritos', '~> 0.0.3'
pod 'SkeletonView', '~> 1.11.0'
pod 'AlamofireImage', '~> 4.0.3'
pod 'Hero', '~> 1.5.0'
pod 'IQKeyboardManagerSwift', '~> 6.5.6'
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
end
end
end
target 'NimbleSurveyTests' do
inherit! :search_paths
use_frameworks!
inhibit_all_warnings!
pod 'MockingbirdFramework', '~> 0.10.0'
pod 'Nimble', '~> 8.0.4'
pod 'SwiftyDuration', :git => 'https://github.com/markgravity/swifty-duration', :tag => 'v0.1.0'
end
target 'NimbleSurveyUITests' do
# Pods for testing
end
end