-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathPodfile
More file actions
36 lines (29 loc) · 886 Bytes
/
Podfile
File metadata and controls
36 lines (29 loc) · 886 Bytes
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
#!/usr/local/bin/ruby -w
project 'ExponeaSDK/ExponeaSDK.xcodeproj'
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
use_frameworks!
target 'ExponeaSDK' do
pod 'SwiftSoup', '>= 2.7.6', '< 3.0'
end
target 'Example' do
pod 'SwiftSoup', '>= 2.7.6', '< 3.0'
end
target 'ExponeaSDKTests' do
inherit! :search_paths
inhibit_all_warnings!
# Pods for testing
pod 'Quick', '5.0.1'
pod 'Nimble', '9.2.1'
pod 'SwiftLint', '0.51.0'
pod 'Mockingjay', :git => 'https://github.com/kylef/Mockingjay.git', :branch => 'master'
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