undancer

添加一个测试用源

  1 +#
  2 +# Be sure to run `pod spec lint QQIM.podspec' to ensure this is a
  3 +# valid spec and to remove all comments including this before submitting the spec.
  4 +#
  5 +# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
  6 +# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
  7 +#
  8 +
  9 +Pod::Spec.new do |s|
  10 +
  11 + # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  12 + #
  13 + # These will help people to find your library, and whilst it
  14 + # can feel like a chore to fill in it's definitely to your advantage. The
  15 + # summary should be tweet-length, and the description more in depth.
  16 + #
  17 +
  18 + s.name = "AV_iOS_SDK_DEP"
  19 + s.version = "1.6.0"
  20 + s.summary = "A short description of AV_iOS_SDK."
  21 +
  22 + # This description is used to generate tags and improve search results.
  23 + # * Think: What does it do? Why did you write it? What is the focus?
  24 + # * Try to keep it short, snappy and to the point.
  25 + # * Write the description between the DESC delimiters below.
  26 + # * Finally, don't worry about the indent, CocoaPods strips it!
  27 + s.description = <<-DESC
  28 + DESC
  29 +
  30 + s.homepage = "http://EXAMPLE/AV_iOS_SDK"
  31 + # s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
  32 +
  33 +
  34 + # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  35 + #
  36 + # Licensing your code is important. See http://choosealicense.com for more info.
  37 + # CocoaPods will detect a license file if there is a named LICENSE*
  38 + # Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
  39 + #
  40 +
  41 + s.license = "MIT (example)"
  42 + # s.license = { :type => "MIT", :file => "FILE_LICENSE" }
  43 +
  44 +
  45 + # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  46 + #
  47 + # Specify the authors of the library, with email addresses. Email addresses
  48 + # of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
  49 + # accepts just a name if you'd rather not provide an email address.
  50 + #
  51 + # Specify a social_media_url where others can refer to, for example a twitter
  52 + # profile URL.
  53 + #
  54 +
  55 + s.author = { "undancer" => "undancer@gmail.com" }
  56 + # Or just: s.author = "undancer"
  57 + # s.authors = { "undancer" => "undancer@gmail.com" }
  58 + # s.social_media_url = "http://twitter.com/undancer"
  59 +
  60 + # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  61 + #
  62 + # If this Pod runs only on iOS or OS X, then specify the platform and
  63 + # the deployment target. You can optionally include the target after the platform.
  64 + #
  65 +
  66 + # s.platform = :ios
  67 + # s.platform = :ios, "5.0"
  68 + # s.platform = :ios
  69 +
  70 + # When using multiple platforms
  71 + # s.ios.deployment_target = "5.0"
  72 + # s.osx.deployment_target = "10.7"
  73 + # s.watchos.deployment_target = "2.0"
  74 + # s.tvos.deployment_target = "9.0"
  75 +
  76 +
  77 + # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  78 + #
  79 + # Specify the location from where the source should be retrieved.
  80 + # Supports git, hg, bzr, svn and HTTP.
  81 + #
  82 +
  83 + # s.source = { :http => "http://boxfish.oss-cn-hangzhou.aliyuncs.com/AV_iOS_SDK_1.6.0_libs.zip" }
  84 +
  85 +
  86 + # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  87 + #
  88 + # CocoaPods is smart about how it includes source code. For source files
  89 + # giving a folder will include any swift, h, m, mm, c & cpp files.
  90 + # For header files it will include any header in the folder.
  91 + # Not including the public_header_files will make all headers public.
  92 + #
  93 +
  94 + # s.source_files = "Classes", "Classes/**/*.{h,m}"
  95 + # s.exclude_files = "Classes/Exclude"
  96 +
  97 + # s.public_header_files = "Classes/**/*.h"
  98 + # s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '${PODS_ROOT}/AV_iOS_SDK/libs', 'OTHER_LDFLAGS' => '-ObjC' }
  99 + # s.vendored_frameworks = 'libs/AVFoundationEx.FrameWork', 'libs/ImSDK.framework', 'libs/QALSDK.framework', 'libs/QAVSDK.framework', 'libs/TLSSDK.framework'
  100 + # s.vendored_frameworks = 'libs/ImSDK.framework', 'libs/QALSDK.framework', 'libs/TLSSDK.framework'
  101 +
  102 + # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  103 + #
  104 + # A list of resources included with the Pod. These are copied into the
  105 + # target bundle with a build phase script. Anything else will be cleaned.
  106 + # You can preserve files from being cleaned, please don't preserve
  107 + # non-essential files like tests, examples and documentation.
  108 + #
  109 +
  110 + # s.resource = "icon.png"
  111 + # s.resources = "Resources/*.png"
  112 +
  113 + # s.preserve_paths = "FilesToSave", "MoreFilesToSave"
  114 +
  115 +
  116 + # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  117 + #
  118 + # Link your library with frameworks, or libraries. Libraries do not include
  119 + # the lib prefix of their name.
  120 + #
  121 +
  122 + # s.framework = "SomeFramework"
  123 + # s.frameworks = "SomeFramework", "AnotherFramework"
  124 + s.frameworks = "CoreMedia", "AudioToolbox", "AVFoundation"
  125 +
  126 +
  127 + # s.library = "iconv"
  128 + # s.libraries = "iconv", "xml2"
  129 + s.libraries = "c++", "stdc++"
  130 +
  131 +
  132 + # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  133 + #
  134 + # If your library depends on compiler flags you can set them in the xcconfig hash
  135 + # where they will only apply to your library. If you depend on other Podspecs
  136 + # you can include multiple dependencies to ensure it works.
  137 +
  138 + # s.requires_arc = true
  139 +
  140 + # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
  141 + # s.dependency "JSONKit", "~> 1.4"
  142 +
  143 +end