-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podfile
64 lines (44 loc) · 1.64 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '15.0'
use_frameworks!
install! 'cocoapods', :preserve_pod_file_structure => true
target "SAD" do
# networking
pod 'Alamofire'
# rx
pod 'RxSwift', '~> 6.0'
pod 'RxDataSources'
# persistence
# RxRealm not up-to-date, so we have to modify it ourselves.
pod 'RxRealm', :git => 'https://github.com/Mioke/RxRealm.git', :branch => 'main'
pod 'RealmSwift'
pod 'MIOSwiftyArchitecture', :path => './', :testspecs => ['Tests']
pod 'MIOSwiftyArchitecture/Testable', :path => './'
# componentization
pod 'Application', :path => './ComponentizeDemo/Application'
pod 'ApplicationProtocol', :path => './ComponentizeDemo/Application'
pod 'Auth', :path => './ComponentizeDemo/Auth'
pod 'AuthProtocol', :path => './ComponentizeDemo/Auth'
# pod 'Notification', :path => './ComponentizeDemo/Notification'
# pod 'NotificationProtocol', :path => './ComponentizeDemo/Notification'
pod 'Swinject'
pod 'SwinjectAutoregistration'
# other utils
pod 'SnapKit'
pod 'FLEX'
target 'SwiftArchitectureTests' do
end
target 'SwiftArchitectureUITests' do
end
end
# pod 'FMDB/FTS' # FMDB with FTS
# pod 'FMDB/standalone' # FMDB with latest SQLite amalgamation source
# pod 'FMDB/standalone/FTS' # FMDB with latest SQLite amalgamation source and FTS
# pod 'FMDB/SQLCipher' # FMDB with SQLCipher
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
end
end