You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
499 B
19 lines
499 B
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '13.0'
|
|
use_frameworks!
|
|
|
|
def testing_pods
|
|
pod "Weibo_SDK", :git => "https://github.com/sinaweibosdk/weibo_ios_sdk.git"
|
|
pod 'AlamofireImage', '~> 4.1'
|
|
pod 'SwiftyJSON', '~> 4.0'
|
|
end
|
|
|
|
target 'Weibo' do
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
testing_pods
|
|
end
|
|
|
|
target 'WeiboTests' do
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
testing_pods
|
|
end
|
|
|