-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
66 lines (54 loc) · 1.38 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
install! 'cocoapods', integrate_targets: false
platform :ios, '13.0'
source 'https://cdn.cocoapods.org/'
target 'Rocket' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
current_target_definition.swift_version = '5.0'
# Pods for Rocket
# AWS
pod 'AWSS3'
# Firebase
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics', '7.3-M1'
# Auth0
pod 'Auth0', '~> 1.38'
# Dev Tools
pod 'SwiftGen', '~> 6.0'
pod 'KeychainAccess'
pod 'LicensePlist'
# Network Library
pod 'Nuke', '~> 9.0'
# UI Library
pod 'KeyboardGuide', :podspec => './KeyboardGuide.podspec'
pod 'UITextView+Placeholder'
pod "YoutubePlayer-in-WKWebView", "~> 0.3.0"
pod 'TagListView', '~> 1.0'
pod 'CropViewController'
pod 'ImageViewer'
pod 'MessageKit'
pod 'BWWalkthrough'
pod 'Instructions', '~> 2.1.1'
pod 'Parchment', '~> 3.0.1'
pod 'FSCalendar'
pod 'CalculateCalendarLogic'
pod 'Charts'
pod 'SCLAlertView'
pod 'SwiftyStoreKit'
pod 'MercariQRScanner'
target 'RocketTests' do
inherit! :search_paths
# Pods for testing
end
target 'RocketUITests' do
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end