This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-iOS/Example/Podfile

45 lines
875 B
Plaintext
Raw Normal View History

2019-07-25 20:11:12 +08:00
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
2019-07-25 19:26:33 +08:00
2019-07-25 20:11:12 +08:00
target 'Example' do
2020-09-18 16:11:05 +08:00
2021-01-28 20:55:03 +08:00
use_modular_headers!
2020-09-18 16:11:05 +08:00
pod 'DoricCore', :path => '../../'
2020-02-25 11:27:02 +08:00
pod 'DoricDevkit', :path => '../../'
2021-01-28 19:14:04 +08:00
pod 'YYWebImage'
2021-01-28 19:14:04 +08:00
pod 'YYImage/WebP'
2021-01-28 19:14:04 +08:00
2021-01-28 20:55:03 +08:00
pod 'SDWebImage'
pod 'SDWebImageWebPCoder'
2021-02-01 14:59:01 +08:00
#pod 'YYCache'
#pod 'TMCache'
pod 'PINCache'
2021-02-01 14:59:01 +08:00
2019-07-25 20:11:12 +08:00
target 'ExampleTests' do
2019-07-25 19:26:33 +08:00
inherit! :search_paths
2019-07-25 20:11:12 +08:00
# Pods for testing
end
2019-07-25 19:26:33 +08:00
2019-07-25 20:11:12 +08:00
target 'ExampleUITests' do
inherit! :search_paths
# Pods for testing
2019-07-25 19:26:33 +08:00
end
2019-07-25 20:11:12 +08:00
2019-07-25 19:26:33 +08:00
end
2021-01-27 16:39:05 +08:00
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 10.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
end
end
end
end