forked from TUM-Dev/Campus-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
36 lines (31 loc) · 996 Bytes
/
Podfile
File metadata and controls
36 lines (31 loc) · 996 Bytes
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
workspace 'Campus App'
source 'https://github.com/CocoaPods/Specs.git'
project 'TUM Campus App.xcodeproj'
platform :ios, '10.2'
use_frameworks!
target 'Campus' do
pod 'Sweeft'
pod 'Alamofire', '~> 4.2'
pod 'MCSwipeTableViewCell', '~> 2.1.4'
pod 'SwiftyJSON', '~> 3.1.4'
pod 'AYSlidingPickerView'
pod 'PZPullToRefresh', :git => 'https://github.com/mathiasquintero/PZPullToRefresh.git'
pod 'ASWeekSelectorView', '~> 1.0'
pod 'CalendarLib', '~> 2.0'
pod 'SWXMLHash', '~> 3.0.3'
pod 'TKSubmitTransition', :git => 'https://github.com/jvitor/TKSubmitTransition.git'
pod 'Kanna', '~> 2.1.0'
target 'TUM Campus AppUITests' do
inherit! :search_paths
end
target 'TUM Campus AppUnitTests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0.2'
end
end
end