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-cli/target/iOS/Podfile

25 lines
563 B
Plaintext
Raw Normal View History

2020-04-11 15:05:27 +08:00
require "json"
package = JSON.parse(File.read(File.join(__dir__, "../package.json")))
version = package['dependencies']["doric"]
version = version.gsub('^','')
2020-03-31 19:30:20 +08:00
source 'https://cdn.cocoapods.org/'
2019-12-05 21:15:16 +08:00
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
2020-03-31 19:20:22 +08:00
target '__$__' do
2019-12-05 21:15:16 +08:00
# Comment the next line if you don't want to use dynamic frameworks
2021-01-28 20:55:03 +08:00
use_modular_headers!
2019-12-05 21:15:16 +08:00
2020-03-31 19:20:22 +08:00
# Pods for __$__
2020-04-11 15:05:27 +08:00
pod 'DoricCore', "#{version}"
pod 'DoricDevkit', "#{version}"
2021-02-01 14:57:41 +08:00
pod 'SDWebImage'
pod 'SDWebImageWebPCoder'
pod 'PINCache'
2019-12-05 21:15:16 +08:00
end