-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
43 lines (39 loc) · 929 Bytes
/
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'
project 'Archive.xcodeproj'
inhibit_all_warnings!
use_frameworks!
def pods
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxFlow'
pod 'RxDataSources', '~> 5.0'
pod 'ReactorKit'
pod 'Moya'
pod 'Moya/RxSwift'
pod 'SwiftGen'
pod 'SwiftyJSON', '~> 4.0'
pod 'Kingfisher', '~> 7.0'
pod 'SnapKit', '~> 5.0.0'
pod 'GrowingTextView', '0.7.2'
pod 'CropViewController'
pod 'UIImageColors'
pod 'lottie-ios'
pod 'SwiftLint'
pod 'SwiftyTimer'
pod 'Then'
pod 'KakaoSDKCommon'
pod 'KakaoSDKAuth'
pod 'KakaoSDKUser'
end
target 'Archive' do
pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"
end
end
end