-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
66 lines (52 loc) · 1.5 KB
/
Podfile
File metadata and controls
66 lines (52 loc) · 1.5 KB
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
source 'https://github.com/CocoaPods/Specs.git'
# Uncomment the next line to define a global platform for your project
platform :ios, '14.0'
abstract_target 'Base' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'Moya', '~> 15.0'
pod 'SnapKit', '~> 5.7.0'
pod 'Kingfisher', '~> 8.3.0'
pod 'NVActivityIndicatorView'
pod 'lottie-ios'
pod 'DateToolsSwift'
pod 'IQKeyboardManagerSwift'
pod 'Toaster'
pod 'DeviceKit', '~> 5.2'
pod 'SwiftMessages'
pod 'SwiftRichString'
pod 'GoogleSignIn'
pod 'FBSDKLoginKit'
pod 'UICircularProgressRing'
pod 'SwiftyBase64', '~> 1.0'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Analytics'
pod 'Firebase/Crashlytics'
pod 'Firebase/Messaging'
pod 'GoogleUtilities'
pod 'Popover'
pod 'KeychainAccess'
target 'Sample'
target 'Sample Dev'
target 'SampleTests' do
inherit! :search_paths
# Pods for testing
pod 'Firebase'
pod 'GoogleUtilities'
end
target 'SampleUITests' 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'] = '14.0'
end
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end