mirror of
https://github.com/easychen/pushdeer.git
synced 2024-10-31 23:59:20 +08:00
27 lines
507 B
Ruby
27 lines
507 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '14.0'
|
|
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
|
|
def commonPods
|
|
# Pods for common
|
|
pod 'Moya', '~> 15.0'
|
|
pod 'SDWebImageSwiftUI', '~> 2.0.2'
|
|
pod 'KRProgressHUD', '~> 3.4.7'
|
|
|
|
# pod 'WoodPeckeriOS', :configurations => ['Debug']
|
|
end
|
|
|
|
target 'PushDeer' do
|
|
commonPods
|
|
# Pods for PushDeer
|
|
|
|
end
|
|
|
|
target 'PushDeerClip' do
|
|
commonPods
|
|
# Pods for PushDeerClip
|
|
|
|
end
|