forked from jbyoung12/GoBringIt-Delivery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
53 lines (45 loc) · 1.54 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
# platform :ios, '14.4'
target 'BringIt' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for BringIt
pod 'OneSignal', '>= 3.0.0', '< 4.0'
# Old Pods
#pod 'B68UIFloatLabelTextField'
#pod 'EZSwiftExtensions'
pod 'IQKeyboardManagerSwift'
#pod 'IDZSwiftCommonCrypto'
#pod 'CVCalendar'
#pod 'GMStepper'
pod 'Stripe', '>= 22.8.1'
# pod 'CryptoSwift'
# New Pods
pod 'RealmSwift' # for local database
#pod 'Timepiece' # for simple date management
#pod 'Hero' # for elegant transitions
pod 'Moya' # for an abstracted netowrk layer
pod 'Alamofire' # for better networking
#pod 'ObjectMapper' # for JSON object mapping
pod 'SendGrid', :git => 'https://github.com/scottkawai/sendgrid-swift.git' # for sending emails
pod 'SkeletonView' # For skeleton loading
pod 'Siren' # for forcing app updates
pod 'Firebase/Analytics' # add the Firebase pod for Google Analytics
# add pods for any other desired Firebase products
# https://firebase.google.com/docs/ios/setup#available-pods
target 'BringItUITests' do
# Pods for testing
end
end
target 'OneSignalNotificationServiceExtension' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'OneSignal', '>= 3.0.0', '< 4.0'
# Pods for OneSignalNotificationServiceExtension
end
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.4'
end
end
end