mattgabor
mattgabor

Reputation: 2084

Error when validating podspec

I've created a cocoapod and I am attempting to validate its podspec, but I get this error:

➜  MyProject git:(master) ✗ pod spec lint MyProject.podspec

 -> MyProject (1.0)
    - ERROR | Returned an unsuccessful exit code. You can use `--verbose` for more information.
    - ERROR | [iOS] Swift support uses dynamic frameworks and is therefore only supported on iOS > 8.
    - NOTE  |  [BEROR]error: There is no SDK with the name or path 'watchos'
    - NOTE  | [watchOS]  error: There is no SDK with the name or path 'watchos'

I am using Xcode 7 beta, developing for ios9

Upvotes: 1

Views: 1310

Answers (2)

StackRunner
StackRunner

Reputation: 1503

Searching for "error generated" in verbose mode should help you track down the error.

Upvotes: 0

Vladmrnv
Vladmrnv

Reputation: 44

CocoaPods currently doesn't support watchOS. See this post for more info regarding the topic

Upvotes: 1

Related Questions