ℹ Please fill out this template when filing an issue.
All lines beginning with an ℹ symbol instruct you with
what info we expect.
Please remove this line and all above before submitting.
Before you start, are you using the latest CocoaPods release?
A lot changes with Xcode releases that are not backwards compatible.Xcode 8 Status: Only works with CocoaPods 1.1.0+
Pushing a Swift 2.3 Pod: You need to add a.swift-versionfile or the argument--swift-version=VERSION, see the CHANGELOG
Not an issue about the CocoaPods command line app? Please file an issue in the appropriate repo - https://github.com/CocoaPods
Issues are for feature requests, and bugs; questions should go to Stack Overflow
Using CocoaPods <= 0.39: http://blog.cocoapods.org/Sharding/
pod lib lint --verbose
lint successful
Build settings from command line:
CODE_SIGN_IDENTITY = -
SDKROOT = appletvsimulator10.0
xcodebuild: error: Unable to find a destination matching the provided destination specifier:
{ id:11EF6831-C5CE-40BE-939E-152216AE5D08 }
Available destinations for the "App" scheme:
{ platform:tvOS Simulator, id:716645BB-DA1C-4991-96BE-ABBEA001AF9F, OS:10.0, name:Apple TV 1080p }
Ineligible destinations for the "App" scheme:
{ platform:tvOS, id:dvtdevice-DVTiOSDevicePlaceholder-appletvos:placeholder, name:Generic tvOS Device }
{ platform:tvOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-appletvsimulator:placeholder, name:Generic tvOS Simulator Device }
Build settings from command line:
CODE_SIGN_IDENTITY = -
SDKROOT = watchsimulator3.1
xcodebuild: error: Unable to find a destination matching the provided destination specifier:
{ id:2E0C5DFB-63CE-4937-93D1-DC2E6D7136B3 }
Available destinations for the "App" scheme:
{ platform:watchOS Simulator, id:8F63B1C1-B94C-410B-BDFB-ED9D0F89E771, OS:3.1, name:Apple Watch - 38mm }
{ platform:watchOS Simulator, id:9364489D-60FE-4C9E-A51F-916AAD42DF1E, OS:3.1, name:Apple Watch - 42mm }
{ platform:watchOS Simulator, id:B279ED26-6275-4EA9-AB38-8DD795EA8FD6, OS:3.1, name:Apple Watch Series 2 - 38mm }
{ platform:watchOS Simulator, id:1F12F953-9A0C-4A01-B88D-B2DF3980B485, OS:3.1, name:Apple Watch Series 2 - 42mm }
CocoaPods : 1.1.1
Ruby : ruby 2.0.0p648 (2015-12-16 revision 53162) [universal.x86_64-darwin16]
RubyGems : 2.5.0
Host : Mac OS X 10.12.1 (16B2555)
Xcode : 8.1 (8B62)
Git : git version 2.9.3 (Apple Git-75)
Ruby lib dir : /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib
Repositories : master - https://github.com/CocoaPods/Specs.git @ 95e32def5064338fc87ae0ba07f8c213f385e9a9
Executable Path: /usr/local/Cellar/cocoapods/1.1.1/libexec/bin/pod
cocoapods-deintegrate : 1.0.1
cocoapods-plugins : 1.0.0
cocoapods-search : 1.0.0
cocoapods-stats : 1.0.0
cocoapods-trunk : 1.1.1
cocoapods-try : 1.1.0
after adding the following config in podspec, its working:
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.6'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
I was having the same problem. That worked for me too.
@andot I was having the same problem!! That worked for me as well!! Thanks!!
Yes, You should specify the deployment_target to determine a destination.
like: s.ios.deployment_target = '9.0'
Most helpful comment
after adding the following config in podspec, its working: