38 lines
996 B
Ruby
38 lines
996 B
Ruby
use_frameworks!
|
|
|
|
platform :ios, '13.0'
|
|
|
|
#post_install do |installer|
|
|
# installer.generated_projects.each do |project|
|
|
# project.targets.each do |target|
|
|
# target.build_configurations.each do |config|
|
|
# config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
|
|
# end
|
|
# end
|
|
# end
|
|
#end
|
|
|
|
|
|
target 'SellyCloudSDK_Example' do
|
|
pod 'SellyCloudSDK', :path => '../'
|
|
# pod 'Nama'
|
|
pod 'Masonry'
|
|
pod 'FUCommonUIComponent', :path => './SubModules/FUCommonUIComponent'
|
|
pod 'FUBeautyComponent', :path => './SubModules/FUBeautyComponent'
|
|
pod 'FURenderKit', :path => './SubModules/FURenderKit'
|
|
pod 'MBProgressHUD'
|
|
pod 'SSZipArchive'
|
|
# pod 'CocoaLumberjack'
|
|
# pod "IJKMediaFramework", :podspec => 'https://github.com/debugly/ijkplayer/releases/download/k0.8.9/IJKMediaFramework.spec.json'
|
|
|
|
target 'SellyCloudSDK_Tests' do
|
|
inherit! :search_paths
|
|
|
|
pod 'FBSnapshotTestCase'
|
|
end
|
|
end
|
|
|
|
target 'ScreenShareUploader' do
|
|
pod 'SellyCloudSDK', :path => '../'
|
|
end
|