mirror of
https://github.com/easychen/pushdeer.git
synced 2024-11-17 15:59:22 +08:00
23 lines
378 B
Ruby
23 lines
378 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'
|
|
end
|
|
|
|
target 'PushDeer' do
|
|
commonPods
|
|
# Pods for PushDeer
|
|
|
|
end
|
|
|
|
target 'PushDeerClip' do
|
|
commonPods
|
|
# Pods for PushDeerClip
|
|
|
|
end
|