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
| # Removal Script B | |
| # 1 | |
| # Set bash script to exit immediately if any commands fail. | |
| set -e | |
| # 2 | |
| # Setup some constants for use later on. | |
| FRAMEWORK_NAME="BrandingFramework" | |
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
| # Removal Script A | |
| # 1 | |
| # Set bash script to exit immediately if any commands fail. | |
| set -e | |
| # 2 | |
| # Setup some constants for use later on. | |
| FRAMEWORK_NAME="BrandingFramework" | |
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
| import UIKit | |
| import BrandingFramework | |
| class ViewController: UIViewController { | |
| override func viewDidLoad() { | |
| super.viewDidLoad() | |
| view.backgroundColor = UIColor.brandedColor() | |
| } | |
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
| # Merge Script | |
| # 1 | |
| # Set bash script to exit immediately if any commands fail. | |
| set -e | |
| # 2 | |
| # Setup some constants for use later on. | |
| FRAMEWORK_NAME="BrandingFramework" | |
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
| Architectures in the fat file: BrandingFramework.framework/BrandingFramework are: i386 x86_64 |
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
| lipo -info BrandingFramework.framework/BrandingFramework |
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
| extension UIColor { | |
| public class func brandedColor() -> UIColor { | |
| return UIColor.magentaColor() | |
| } | |
| } |