-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
97 lines (75 loc) · 2.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
use_frameworks! :linkage => :static
def shared_pods
pod 'Alamofire', '~> 5.2'
end
target 'YourKitchen' do
# Comment the next line if you don't want to use dynamic frameworks
shared_pods
# Pods for YourKitchen
pod 'ConcentricOnboarding'
pod 'SwiftUIRefresh'
# Crash analytics and regular analytics
pod 'Firebase/Analytics', '~> 7.1.0'
pod 'Firebase/Crashlytics'
# Kingfisher
pod 'Kingfisher/Core'
pod 'Kingfisher/SwiftUI'
# Firebase
pod 'Firebase/Firestore'
pod 'FirebaseFirestoreSwift', '~> 7.1.0-beta'
pod 'Firebase/Storage'
pod 'Firebase/Messaging'
# pod 'GoogleMLKit/Translate'
# pod 'GoogleMLKit/LanguageID'
# Authentication
pod 'Firebase/Auth'
pod 'GoogleSignIn'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
# Premium
pod 'SwiftyStoreKit'
# Advertisement
pod 'FBAudienceNetwork'
pod 'GoogleMobileAdsMediationFacebook'
pod 'Google-Mobile-Ads-SDK'
end
target 'YourKitchenTV' do
platform :tvos, '13.0'
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for YourKitchenTV
shared_pods
# Kingfisher
pod 'Kingfisher/Core'
pod 'Kingfisher/SwiftUI'
# Firebase
pod 'Firebase/Auth'
pod 'Firebase/Firestore'
pod 'FirebaseFirestoreSwift', '~> 7.1.0-beta'
pod 'Firebase/Storage'
end
target 'WatchOS Extension' do
platform :watchos, '6.0'
use_frameworks!
shared_pods
# Kingfisher
pod 'Kingfisher/Core'
pod 'Kingfisher/SwiftUI'
end
target 'YourKitchenWidgetExtension' do
#Pods for YourKitchen Widget
shared_pods
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
if config.name == 'Debug'
config.build_settings['OTHER_SWIFT_FLAGS'] = ['$(inherited)', '-Onone']
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule'
end
end
end
end