-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathPodfile
More file actions
59 lines (53 loc) · 1.39 KB
/
Podfile
File metadata and controls
59 lines (53 loc) · 1.39 KB
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'
workspace 'MAGE'
project 'MAGE.xcodeproj'
use_modular_headers!
def common_pods
pod 'HexColors', '~> 4.0.0'
pod 'libPhoneNumber-iOS', '~> 0.9.15'
pod 'zxcvbn-ios'
pod 'DateTools', '~> 2.0.0'
pod 'MaterialComponents'
pod 'MDFInternationalization'
pod 'PureLayout'
pod "AFNetworking", "~> 4.0.1"
pod "MagicalRecord", "~> 2.3.2"
pod 'SSZipArchive', '~> 2.2.2'
end
def test_pods
pod 'OCMock'
pod 'OHHTTPStubs'
pod 'OHHTTPStubs/Swift'
pod 'Quick', '~> 6'
pod 'Nimble', '~> 9'
pod 'KIF'
pod 'KIF/IdentifierTests'
end
target 'MAGE' do
common_pods
target 'MAGETests' do
inherit! :search_paths
common_pods
test_pods
end
target 'MAGEGeoPackageTests' do
inherit! :search_paths
common_pods
test_pods
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# config.build_settings.delete 'ARCHS'
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
# REMOVE? Fix Xcode 14 bundle code signing issue
# if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
# target.build_configurations.each do |config|
# config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
# end
# end
end
end
end