-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
50 lines (40 loc) · 1.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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
platform :ios, '15.0'
target 'AVIRO' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'NMapsMap'
pod 'KeychainSwift', '22.0.0'
pod 'lottie-ios', '4.4.1'
pod 'RealmSwift', '10.48.0'
pod 'Toast-Swift', '5.1.0'
pod 'AmplitudeSwift', '1.4.5'
pod 'RxSwift', '6.6.0'
pod 'RxCocoa', '6.6.0'
pod 'RxDataSources', '~> 5.0'
# social login
# 추후 SwiftUI 사용 시 'GoogleSignInSwiftSupport' 추가 필요
pod 'GoogleSignIn'
pod 'KakaoSDKCommon'
pod 'RxKakaoSDKCommon'
pod 'KakaoSDKAuth'
pod 'RxKakaoSDKAuth'
pod 'KakaoSDKUser'
pod 'RxKakaoSDKUser'
pod 'naveridlogin-sdk-ios'
# Pods for AVIRO
end
target 'AVIROTests' do
pod 'RxBlocking', '6.6.0'
pod 'RxTest', '6.6.0'
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end