This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>method</key> | |
| <string>app-store</string> | |
| <key>teamID</key> | |
| <string>XXXXXXXXXX</string> | |
| <key>uploadBitcode</key> | |
| <true/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| post_install do |installer| | |
| print "Setting the default SWIFT_VERSION to 4.0\n" | |
| installer.pods_project.build_configurations.each do |config| | |
| config.build_settings['SWIFT_VERSION'] = '4.0' | |
| end | |
| installer.pods_project.targets.each do |target| | |
| if ['SomeTarget-iOS', 'SomeTarget-watchOS'].include? "#{target}" | |
| print "Setting #{target}'s SWIFT_VERSION to 3.0\n" | |
| target.build_configurations.each do |config| |
OlderNewer