-
Notifications
You must be signed in to change notification settings - Fork 18
/
Podfile
55 lines (40 loc) · 1.22 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
# Uncomment the next line to define a global platform for your project
use_frameworks!
platform :ios, '14.0'
target 'Motivation' do
# Comment the next line if you don't want to use dynamic frameworks
#use_frameworks!
# Pods for Motivation
pod 'SwiftyJSON'
pod 'ObjectMapper'
pod 'KeychainSwift'
pod 'SwiftTryCatch'
pod 'lottie-ios'
pod 'NVActivityIndicatorView'
end
target 'Motivation-AppClip' do
# Comment the next line if you don't want to use dynamic frameworks
#use_frameworks!
# Pods for Motivation-AppClip
end
target 'Motivation-Watch' do
# Comment the next line if you don't want to use dynamic frameworks
#use_frameworks!
# Pods for Motivation-Watch
end
target 'Motivation-Watch Extension' do
# Comment the next line if you don't want to use dynamic frameworks
# Pods for Motivation-Watch Extension
end
target 'Motivation-WidgetExtension' do
# Comment the next line if you don't want to use dynamic frameworks
#use_frameworks!
# Pods for Motivation-WidgetExtension
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
end
end
end