-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
podfile
executable file
·61 lines (58 loc) · 1.66 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '16.5'
use_frameworks!
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CODE_SIGN_IDENTITY'] = ''
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end
plugin 'cocoapods-keys', {
:project => "KKid",
:keys => [
"tmdb_apiKey",
"ShipBook_appId",
"ShipBook_appKey",
"kkid_apikey",
"newrelic_token",
"unsplash_accesskey",
"unsplash_secretkey"
],
:target => "KKid"
}
target 'KKid' do
project 'KKid.xcodeproj'
# pod 'CloudKitQueues'
pod 'BulletinBoard'
pod 'YubiKit'
pod 'xcbeautify'
pod 'UnsplashPhotoPicker'
# pod 'NewRelicAgent'
pod 'PBTutorialManager'
pod 'ADEmptyDataView'
pod 'Snowflake', :git => 'https://github.com/kumpeapps/Snowflake.git', :branch => 'master'
pod 'ContentRestrictionsKit'
pod 'TransitionButton'
pod 'Alamofire-SwiftyJSON'
pod 'Toast-Swift-fork', :git => 'https://github.com/kumpeapps/Toast-Swift-fork', :branch => 'master'
pod 'SwiftyFORM'
pod 'ReachabilitySwift'
pod 'SwiftMessages'
pod 'Sync'
pod 'Smile', :git => 'https://github.com/onmyway133/Smile.git', :branch => 'master'
pod 'CollectionViewCenteredFlowLayout', :git => 'https://github.com/Coeur/CollectionViewCenteredFlowLayout.git', :branch => 'master'
pod 'KumpeHelpers'
pod 'Haptico'
pod 'PrivacyKit'
pod 'BadgeSwift'
pod 'Kingfisher'
pod 'JKRefresher'
pod 'YoutubeKit', '0.4.0'
pod 'ShipBookSDK'
pod 'WhatsNew'
pod 'AvatarView', :git => 'https://github.com/justinkumpe/AvatarView.git', :branch => 'master'
end