1

Is it different from the deployment target for the iOS project? If yes what's the difference between them?

  • it's generally best to include the links you read before and go into detail of why it didn't help you find your answer – mfaani Oct 04 '19 at 12:19

1 Answers1

1

Platform indicates for which platform the pods project should be generated.
Platform can be:

  • ios for iOS projects
  • osx for MacOS projects
  • tvos for TvOS projects
  • watchos for WatchOS projects

Target specifies for which target the libraries need to be linked.

You can read Podfile Syntax Reference for more details.

Midhun MP
  • 103,496
  • 31
  • 153
  • 200
  • 1
    I'd also add that a given Xcode project may have multiple targets e.g. iOS app and watchOS app and they may not have the same pod requirements. – mfaani Oct 04 '19 at 12:21