-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPodfile
57 lines (49 loc) · 1.65 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
source 'https://cdn.cocoapods.org/'
source 'https://github.com/wisemen-digital/Podspecs.git'
platform :ios, '15.0'
inhibit_all_warnings!
ensure_bundler! '> 2.0'
plugin 'cocoapods-alexandria',
:minimum_ios_version => '13.0'
target 'Example Project' do
project 'Example Project',
'Development Debug' => :debug, 'Development Release' => :release,
'Test Debug' => :debug, 'Test Release' => :release,
'Staging Debug' => :debug, 'Staging Release' => :release,
'Production Debug' => :debug, 'Production Release' => :release
pod 'AppwiseCore', :path => '../'
pod 'AppwiseCore/CoreData', :path => '../'
pod 'AppwiseCore/DeepLink', :path => '../'
pod 'AppwiseCore/UI', :path => '../'
# Tools
unless ENV['CI'].present?
pod 'atlantis-proxyman'
pod 'BartyCrouch'
pod 'Sourcery/CLI-Only'
pod 'SwiftFormat/CLI'
pod 'SwiftGen'
pod 'SwiftLint'
end
# Other
pod 'BonMot'
pod 'IQKeyboardManagerSwift'
pod 'Nuke'
pod 'NukeExtensions'
pod 'Nuke-Alamofire-Plugin'
pod 'OneSignal'
pod 'p2.OAuth2'
pod 'Reusable'
pod 'SnapKit'
pod 'StatefulUI'
end
# Pods with no defined swift version are set to 4.2
pre_install do |installer|
installer.pod_targets.select(&:uses_swift?).each do |target|
target.root_spec.swift_versions << '4.2' if target.root_spec.swift_versions.empty?
target.instance_variable_set(:@swift_version, '4.2') unless target.swift_version
end
end
post_install do |installer|
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-Example Project/Pods-Example Project-Acknowledgements.plist', 'Application/Resources/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end