pod spec lint命令失败

时间:2019-05-15 13:56:10

标签: ios tvos podspec

我正在尝试为我创建的框架创建一个podspec文件。我已将所有必要的详细信息添加到podspec文件中,并尝试运行pod spec lint命令来检查podspec文件中编写的规范是否正确。

我尝试了pod spec lint命令,但失败了

错误| [tvOS]未知:遇到未知错误(找不到tvos模拟器(有效值:com.apple.coresimulator.simruntime.ios-12-2,com.apple.coresimulator.simruntime.ios-9- 3,com.apple.coresimulator.simruntime.tvos-12-2,com.apple.coresimulator.simruntime.watchos-4-2,com.apple.coresimulator.simruntime.watchos-5-2)。确保Xcode->窗口->设备在验证过程中至少列出了一个tvos模拟器,或者另外添加了一个。)

下面是我创建的podspec文件:

#
#  Be sure to run `pod spec lint TVOSPlayer.podspec' to ensure this is a
#  valid spec and to remove all comments including this before submitting the spec.
#
#  To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
#  To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |s|

  # ―――  Spec Metadata  ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  These will help people to find your library, and whilst it
  #  can feel like a chore to fill in it's definitely to your advantage. The
  #  summary should be tweet-length, and the description more in depth.
  #

  s.name         = "TVOSPlayer"
  s.version      = "0.0.1"
  s.summary      = "custom player."

  # 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  = 'TVOSPlayer custom library. Use pod TVOSPlayer to it.'

  s.homepage     = "https://github.com/TVOSPlayer/TVOSPlayer"
  # s.screenshots  = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"


  # ―――  Spec License  ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  Licensing your code is important. See http://choosealicense.com for more info.
  #  CocoaPods will detect a license file if there is a named LICENSE*
  #  Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
  #

  # s.license      = "MIT (example)"
  s.license      = { :type => "MIT", :file => "LICENSE" }


  # ――― Author Metadata  ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  Specify the authors of the library, with email addresses. Email addresses
  #  of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
  #  accepts just a name if you'd rather not provide an email address.
  #
  #  Specify a social_media_url where others can refer to, for example a twitter
  #  profile URL.
  #

  s.author             = { <Author_name> => <Author_Email> }
  # Or just: s.author    = ""
  # s.authors            = { "" => "" }
  # s.social_media_url   = ""

  # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  If this Pod runs only on iOS or OS X, then specify the platform and
  #  the deployment target. You can optionally include the target after the platform.
  #

  # s.platform     = :ios
  # s.platform     = :ios, "5.0"

  #  When using multiple platforms
  # s.ios.deployment_target = "5.0"
  # s.osx.deployment_target = "10.7"
  # s.watchos.deployment_target = "2.0"
  s.tvos.deployment_target = "9.2"

  s.swift_version = '4.2'


  # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  Specify the location from where the source should be retrieved.
  #  Supports git, hg, bzr, svn and HTTP.
  #

  #s.source       = { :git => "https://github.com/TVOSPlayer/TVOSPlayer.git", :tag => "#{s.version}" }
   s.source       = { :git => "https://github.com/TVOSPlayer/TVOSPlayer.git", :branch => "IMAPlayer" }


  # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  CocoaPods is smart about how it includes source code. For source files
  #  giving a folder will include any swift, h, m, mm, c & cpp files.
  #  For header files it will include any header in the folder.
  #  Not including the public_header_files will make all headers public.
  #

  s.source_files  = "source", "source/*.{h,m,swift}", "source/**/*.{h,m,swift}"
  #s.exclude_files = "source/Exclude"

  # s.public_header_files = "Classes/**/*.h"


  # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  A list of resources included with the Pod. These are copied into the
  #  target bundle with a build phase script. Anything else will be cleaned.
  #  You can preserve files from being cleaned, please don't preserve
  #  non-essential files like tests, examples and documentation.
  #

  # s.resource  = "icon.png"
  # s.resources = "Resources/*.png"

  # s.preserve_paths = "FilesToSave", "MoreFilesToSave"


  # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  Link your library with frameworks, or libraries. Libraries do not include
  #  the lib prefix of their name.
  #

  # s.framework  = "SomeFramework"
  # s.frameworks = "SomeFramework", "AnotherFramework"
  s.frameworks = "UIKit", "Foundation", "CoreMedia", "AVFoundation", "AVKit", "QuartzCore", "APIFramework", "UIFramework"

  # s.library   = "iconv"
  # s.libraries = "iconv", "xml2"
  s.libraries = "xml2"


  # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  #
  #  If your library depends on compiler flags you can set them in the xcconfig hash
  #  where they will only apply to your library. If you depend on other Podspecs
  #  you can include multiple dependencies to ensure it works.

  # s.requires_arc = true
  s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2", "FRAMEWORK_SEARCH_PATHS" => "$(PROJECT_DIR)/../Carthage/Build/tvOS" }
  # s.dependency "JSONKit", "~> 1.4"
  #s.dependency 'ClientSideInteractiveMediaAds', '~> 1.0.0'

  s.vendored_frameworks = "Carthage/Build/tvOS/Alamofire.framework", "Carthage/Build/tvOS/APIFramework.framework", "Carthage/Build/tvOS/UIFramework.framework", "Carthage/Build/tvOS/Haneke.framework"

  #, "Carthage/Build/tvOS/Auth0.framework", "Carthage/Build/tvOS/FBSDKTVOSKit.framework", "Carthage/Build/tvOS/FBSDKLoginKit.framework", "Carthage/Build/tvOS/FBSDKCoreKit.framework", "Carthage/Build/tvOS/FBSDKShareKit.framework", "Carthage/Build/tvOS/Bolts.framework"

end

2 个答案:

答案 0 :(得分:1)

更新可解决该问题的椰壳动物。

sudo gem install cocoapods 

答案 1 :(得分:0)

已解决了更新Cocoapods版本的问题。我使用的是1.5.3,更新时我的Cocoapods版本是1.6.2

ERROR | [iOS] unknown: Encountered an unknown error (Could not find a `ios` simulator (valid values: com.apple.coresimulator.simruntime.ios-12-2, com.apple.coresimulator.simruntime.tvos-12-2, com.apple.coresimulator.simruntime.watchos-5-2). Ensure that Xcode -> Window -> Devices has at least one `ios` simulator listed or otherwise add one.) during validation.