Is it different from the deployment target
for the iOS project? If yes what's the difference between them?
Asked
Active
Viewed 870 times
1

Govind Mulgir
- 11
- 2
-
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 Answers
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
-
1I'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