Reputation: 35953
Every time I type
pod init
the Podfile file comes with this for iOS 6
platform :ios, "6.0"
what do I have to do to make that command always generate for iOS 7
platform :ios, "7.0"
when I type pod init
? ... and preferably with that line uncommented.
Upvotes: 0
Views: 78
Reputation: 63914
This is currently hardcoded into the init
command. If you'd like to I'm sure you could submit a pull request for this to start the conversation about switching it.
Upvotes: 2