-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
60 lines (49 loc) · 1.61 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
source 'https://cdn.cocoapods.org/'
source 'https://github.com/depromeet/Tiqui-Taca_iOS_Podspec.git'
platform :ios, '15.0'
inhibit_all_warnings!
target 'TiquiTaca_iOS' do
use_frameworks!
# UI
pod 'BottomSheetSwiftUI', '= 2.7.0'
pod 'Map', :git => 'https://github.com/pauljohanneskraft/Map', :branch => 'hit-testing'
pod 'ExytePopupView', '= 1.1.4'
# Firebase
pod 'FirebaseAnalytics', '= 9.1.0'
pod 'FirebaseCrashlytics', '= 9.1.0'
pod 'FirebaseMessaging', '= 9.1.0'
pod 'FirebasePerformance', '= 9.2.0'
# DB
pod 'RealmSwift', '= 10.25.1'
# Util
pod 'SwiftLint', '= 0.47.0'
pod 'LicensePlist', '= 3.22.0'
# Socket
pod 'Socket.IO-Client-Swift', '= 16.0.0'
# Tiqui-Taca_iOS_Podspec
pod 'ComposableArchitecture'
pod 'CasePaths'
pod 'CombineSchedulers'
pod 'CustomDump'
pod 'IdentifiedCollections'
pod 'XCTestDynamicOverlay'
pod 'ComposableCoreLocation'
target 'TiquiTaca_iOSTests' do
inherit! :search_paths
# Pods for testing
end
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'] = '15.0'
end
end
end
# Generate LicensePlist
system("rm -rf Settings.bundle/tiqui-taca.LicensePlist")
system("rm -f Settings.bundle/tiqui-taca.LicensePlist.plist")
system("Pods/LicensePlist/license-plist --add-version-numbers --suppress-opening-directory --output-path Settings.bundle --prefix tiqui-taca.LicensePlist")
system("rm -f Settings.bundle/tiqui-taca.LicensePlist.latest_result.txt")
end