команда pod spec lint завершается неудачно - PullRequest
0 голосов
/ 15 мая 2019

Я пытаюсь создать файл podspec для фреймворка, который я создал. Я добавил все необходимые данные в файл podspec и попытался запустить команду pod spec lint, чтобы проверить правильность спецификации, записанной в файле podspec.

Я попробовал команду pod spec lint, и она не работает

ОШИБКА | [tvOS] unknown: обнаружена неизвестная ошибка (не удалось найти симулятор 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 -> Window - > На устройствах есть хотя бы один симулятор 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 ]

1 голос
/ 28 июня 2019

обновление Cocoapods, которые могут решить проблему.

sudo gem install cocoapods 
0 голосов
/ 22 мая 2019

Исправлена ​​проблема с обновлением версии 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.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...