Blame view

HHMedicSDK.podspec 1.06 KB
chengyanfang authored
1
Pod::Spec.new do |s|
chengyanfang authored
2
    s.name         = "HHMedicSDK"
chengyanfang authored
3
    s.version      = "3.1.2.051014"
chengyanfang authored
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
    s.summary      = "和缓基础SDK"

    s.description  = <<-DESC
    和缓视频医生,连接千万用户和全科医生。
    DESC

    s.homepage           = 'https://code.hh-medic.com/dev-client/hhsdk.ios.base'
    s.license            = "MIT"
    s.author             = { 'hh_client@hh-medic.com' => 'chengyanfang@hh-medic.com' }
    s.social_media_url   = "https://github.com/515783034"

    s.platform           = :ios, "9.0"
    s.source             = { :git => "http://code.hh-medic.com/hh_public/HHSDKBase.ios.git", :tag => s.version }
    s.default_subspec = 'Base'
chengyanfang authored
19
    s.dependency 'TXIMSDK_Smart_iOS'
chengyanfang authored
20 21

    s.subspec 'Base' do |base|
chengyanfang authored
22 23
        base.vendored_frameworks = 'HHMedicSDK/*.framework'
        base.resources = 'HHMedicSDK/resources/*.bundle'
chengyanfang authored
24 25 26 27 28 29 30 31

        base.frameworks = 'SystemConfiguration', 'MobileCoreServices', 'AVFoundation', 'CoreTelephony', 'VideoToolbox', 'AudioToolbox', 'CoreMedia'
        base.libraries = 'z', 'sqlite3.0', 'c++', 'resolv.9'
    end

end