This file contains 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
# Adds empty TargetAttributes to pbxproj | |
lane :fix_target_attributes do |opts| | |
require 'xcodeproj' | |
xcodeproj_path = opts[:xcodeproj] || File.join(File.dirname(__FILE__), '..', XCODEPROJ_FILE) | |
UI.important("Fixing TargetAttributes in #{xcodeproj_path}") | |
project = Xcodeproj::Project.open(xcodeproj_path) | |
root_object = project.root_object |
OlderNewer