CNLiveBMineModule.podspec 3.51 KB
#
# Be sure to run `pod lib lint CNLiveBMineModule.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
  s.name             = 'CNLiveBMineModule'
  s.version          = '0.0.1'
  s.summary          = 'CNLiveBMineModule.'

# This description is used to generate tags and improve search results.
#   * Think: What does it do? Why did you write it? What is the focus?
#   * Try to keep it short, snappy and to the point.
#   * Write the description between the DESC delimiters below.
#   * Finally, don't worry about the indent, CocoaPods strips it!

  s.description      = <<-DESC
TODO: 网家家企业版-我的模块.
                       DESC

  s.homepage         = 'http://bj.gitlab.cnlive.com/ios-team/CNLiveBMineModule'
  # s.screenshots     = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  s.license          = { :type => 'MIT', :file => 'LICENSE' }
  s.author           = { 'iOS-Xiaowen' => '153993236@qq.com' }
  s.source           = { :git => 'http://bj.gitlab.cnlive.com/ios-team/CNLiveBMineModule.git', :tag => s.version.to_s }
  # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

  s.ios.deployment_target = '9.0'

  # s.source_files = 'CNLiveBMineModule/Classes/**/*'
  
  # Module
  s.subspec 'Module' do |ss|
      ss.source_files = 'CNLiveBMineModule/Classes/Module/*.{h,m}'
      ss.dependency 'CNLiveBMineModule/Controller'
  end
  
  # Controller
  s.subspec 'Controller' do |ss|
      ss.source_files = 'CNLiveBMineModule/Classes/Controller/*.{h,m}'
      ss.dependency 'CNLiveBMineModule/UserInfo'
      ss.dependency 'CNLiveBMineModule/View'
  end
  
  # View
  s.subspec 'View' do |ss|
      ss.source_files = 'CNLiveBMineModule/Classes/View/*.{h,m}'
      ss.dependency 'CNLiveBMineModule/Model'
      ss.dependency 'CNLiveBMineModule/UserInfo'
  end
   
  # Model
  s.subspec 'Model' do |ss|
      ss.source_files = 'CNLiveBMineModule/Classes/Model/*.{h,m}'
  end
  
  # 用户信息/个人资料
  s.subspec 'UserInfo' do |ss|
      ss.source_files = 'CNLiveBMineModule/Classes/UserInfo/*.{h,m}'
  end
  
  # 设置
  s.subspec 'Setting' do |ss|
      ss.source_files = 'CNLiveBMineModule/Classes/Setting/**/*.{h,m}'
  end
  s.resource_bundles = {
    'CNLiveBMineModule' => ['CNLiveBMineModule/Assets/CNLiveBMineModule.xcassets']
  }

  # s.public_header_files = 'Pod/Classes/**/*.h'
  # s.frameworks = 'UIKit', 'MapKit'
  # s.dependency 'AFNetworking', '~> 2.3'
  
  # pod
  s.dependency 'CNLiveSDKs/CNLiveUserSystemSDK', '~> 0.3.2.0' #GitHub所以指定版本号
  s.dependency 'CNLiveTripartiteManagement/QMUIKit'
  s.dependency 'CNLiveTripartiteManagement/SDWebImage'
  s.dependency 'CNLiveTripartiteManagement/Masonry'
  s.dependency 'CNLiveTripartiteManagement/MJExtension'
  s.dependency 'CNLiveTripartiteManagement/AFNetworking'

  # 服务层
  s.dependency 'CNLiveServices'
  
  # 环境
  s.dependency 'CNLiveEnvironment'
  
  # 基类
  s.dependency 'CNLiveCommonClass'
  
  # IM
  s.dependency 'CNLiveIMBaseSDK'
  
  # 类别
  s.dependency 'CNLiveCategory'
  
  # 用户信息本地化
  s.dependency 'CNLiveUserManagement'
  
  s.dependency 'CNLiveCommonCategory'
  s.dependency 'CNLiveCustomControl'
  s.dependency 'CNLiveManager'
  s.dependency 'CNLiveImagePickerController'
  s.dependency 'CNLiveAVCamera'
  s.dependency 'CNLiveUserAgreementManager'
  s.dependency 'CNLiveChooseCountry'
  
  s.static_framework = true
  
end