12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- Pod::Spec.new do |s|
- s.name = 'BFFramework'
- s.version = '1.1.1'
- s.summary = 'Byte fllow 基础组件库'
- s.swift_version = '5.0'
- s.description = <<-DESC
- TODO: Add long description of the pod here.
- DESC
- s.homepage = 'https://git.yishihui.com/iOS'
-
- s.license = { :type => 'MIT', :file => 'LICENSE' }
- s.author = { '287971051@qq.com' => '287971051@qq.com' }
- s.source = { :git => 'https://git.yishihui.com/iOS/BFFramework.git'}
-
- s.ios.deployment_target = '10.0'
- s.source_files = 'BFFramework/Classes/**/*'
- s.resource_bundles = {
- 'BFFramework_Resources' => ['BFFramework/Assets/**/*.xcassets', 'BFFramework/Assets/Resources/*']
- }
- s.static_framework = true
- s.xcconfig = { 'CLANG_MODULES_AUTOLINK' => 'YES',
- 'OTHER_SWIFT_FLAGS' => "$(inherited) -DGLES",
- 'VALIDATE_WORKSPACE_SKIPPED_SDK_FRAMEWORKS' => "OpenGLES"
- }
- s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-all_load'}
- s.public_header_files = 'BFFramework/Classes/**/*.h'
-
-
- s.frameworks = 'UIKit', 'AVFoundation','OpenGLES', 'CoreMedia', 'QuartzCore'
-
-
-
- s.dependency 'BFCommonKit'
- s.dependency 'BFNetRequestKit'
- s.dependency 'BFMaterialKit'
- s.dependency 'ObjectMapper' ,'4.2.0'
- s.dependency 'AliyunOSSiOS' ,'2.10.10'
- s.dependency 'WechatOpenSDK-Swift' ,'1.8.7.1'
- s.dependency 'MJRefresh' ,'3.7.2'
- s.dependency 'LMJHorizontalScrollText' ,'2.0.2'
- s.dependency 'TXLiteAVSDK_Player' ,'9.3.10765'
- s.dependency 'Bugly' ,'2.5.90'
- end
|