Signals icon indicating copy to clipboard operation
Signals copied to clipboard

Specify deployment targets in pbxproj file

Open spinach opened this issue 6 years ago • 0 comments

This change is needed for Carthage to operate well, because if we don't specify them, then carthage will assume a minimum deployment target of 12.1 for tvOS which is not what we want.

I followed the same versions listed in the podspec:

  s.ios.deployment_target = '8.0'
  s.osx.deployment_target = '10.9'
  s.tvos.deployment_target = '9.0'
  s.watchos.deployment_target = '2.0'

spinach avatar Mar 07 '19 15:03 spinach