├── BlazeDemo.xcodeproj
├── project.xcworkspace
│ └── contents.xcworkspacedata
├── xcuserdata
│ └── jamvi01.xcuserdatad
│ │ └── xcschemes
│ │ └── xcschememanagement.plist
└── project.pbxproj
├── ipas
└── BlazeDemo 2018-03-09 10-19-18
│ ├── ExportOptions.plist
│ ├── DistributionSummary.plist
│ └── Packaging.log
├── README.md
├── BlazeDemo
├── Base.lproj
│ ├── Main.storyboard
│ └── LaunchScreen.storyboard
├── ViewController.swift
├── Info.plist
├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ └── Contents.json
└── AppDelegate.swift
└── .gitignore
/BlazeDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/BlazeDemo.xcodeproj/xcuserdata/jamvi01.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | BlazeDemo.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/ipas/BlazeDemo 2018-03-09 10-19-18/ExportOptions.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | compileBitcode
6 |
7 | method
8 | ad-hoc
9 | signingStyle
10 | automatic
11 | stripSwiftSymbols
12 |
13 | teamID
14 | 2JJZ96P8P5
15 | thinning
16 | <none>
17 |
18 |
19 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # blazedemo-ios-app
2 | This sample app is used for showcasing the
3 | mobile testing capabilities in blazemeter. The app is a simple web view that is wrapped in the application and allows one to navigate to [blazedemo.com](www.blazedemo.com). [blazedemo.com](www.blazedemo.com) is a simple website that allows one to find flights and purchase a ticket.
4 |
5 | ## Build
6 |
7 | Clone the project and open it in Xcode.The project was built with Xcode 9.2. The project is written in swift.
8 |
9 |
10 | ## ipas
11 | The ipa directory contains ipa of the application built with adhoc provisioning profile. We upload this ipa file to be hosted on a real iphone and run our appium tests against that device.
12 |
13 | ## How to customize
14 | You can choose to build your own iphone app with the adhoc provisioning profile and pass it to the blazemeter system.
--------------------------------------------------------------------------------
/BlazeDemo/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/BlazeDemo/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // BlazeDemo
4 | //
5 | // Created by Jambu, Vijay on 12/18/17.
6 | // Copyright © 2017 Jambu, Vijay. All rights reserved.
7 | //
8 |
9 | import UIKit
10 | import WebKit
11 | import os.log
12 |
13 | class ViewController: UIViewController, WKUIDelegate, WKNavigationDelegate {
14 |
15 | var webView: WKWebView!
16 |
17 | override func loadView() {
18 | let webConfiguration = WKWebViewConfiguration()
19 | webView = WKWebView(frame: .zero, configuration: webConfiguration)
20 | webView.uiDelegate = self
21 | webView.navigationDelegate = self
22 | view = webView
23 | }
24 |
25 | override func viewDidLoad() {
26 | super.viewDidLoad()
27 | // Do any additional setup after loading the view, typically from a nib.
28 |
29 | let url:URL? = URL(string: "http://www.blazedemo.com/")
30 | let request = URLRequest(url: url!)
31 | webView.load(request)
32 | webView.allowsBackForwardNavigationGestures = true
33 | }
34 |
35 | override func didReceiveMemoryWarning() {
36 | super.didReceiveMemoryWarning()
37 | // Dispose of any resources that can be recreated.
38 | }
39 |
40 | func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
41 | // os_log("navigation finished for webview %@",webView.url!.absoluteString)
42 | print("navigation finished for webview \(webView.url!.absoluteString)")
43 | title = webView.title
44 | }
45 |
46 | }
47 |
48 |
--------------------------------------------------------------------------------
/BlazeDemo/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleDisplayName
8 | BlazeDemo
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | NSAppTransportSecurity
26 |
27 | NSAllowsArbitraryLoads
28 |
29 |
30 | UILaunchStoryboardName
31 | LaunchScreen
32 | UIMainStoryboardFile
33 | Main
34 | UIRequiredDeviceCapabilities
35 |
36 | armv7
37 |
38 | UISupportedInterfaceOrientations
39 |
40 | UISupportedInterfaceOrientations~ipad
41 |
42 | UIInterfaceOrientationPortrait
43 | UIInterfaceOrientationPortraitUpsideDown
44 | UIInterfaceOrientationLandscapeLeft
45 | UIInterfaceOrientationLandscapeRight
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/ipas/BlazeDemo 2018-03-09 10-19-18/DistributionSummary.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | BlazeDemo.ipa
6 |
7 |
8 | architectures
9 |
10 | armv7
11 | arm64
12 |
13 | certificate
14 |
15 | SHA1
16 | F4898C061B3856DF9F015E7EAA7305A4BB3E486F
17 | dateExpires
18 | 10/18/18
19 | type
20 | iOS Distribution
21 |
22 | entitlements
23 |
24 | application-identifier
25 | 2JJZ96P8P5.CA.BlazeDemo
26 | com.apple.developer.team-identifier
27 | 2JJZ96P8P5
28 | get-task-allow
29 |
30 | keychain-access-groups
31 |
32 | 2JJZ96P8P5.CA.BlazeDemo
33 |
34 |
35 | name
36 | BlazeDemo.app
37 | profile
38 |
39 | UUID
40 | 8fc965eb-ca4a-4b5b-a41d-2940d4eeef56
41 | name
42 | iOS Team Ad Hoc Provisioning Profile: CA.BlazeDemo
43 |
44 | team
45 |
46 | id
47 | 2JJZ96P8P5
48 | name
49 | CA, Inc. (Ent)
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/BlazeDemo/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Xcode
2 | #
3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4 |
5 | ## Build generated
6 | build/
7 | DerivedData/
8 | Index/
9 |
10 | ## Various settings
11 | *.pbxuser
12 | !default.pbxuser
13 | *.mode1v3
14 | !default.mode1v3
15 | *.mode2v3
16 | !default.mode2v3
17 | *.perspectivev3
18 | !default.perspectivev3
19 | xcuserdata/
20 |
21 | ## Other
22 | *.moved-aside
23 | *.xccheckout
24 | *.xcscmblueprint
25 |
26 | ## Obj-C/Swift specific
27 | *.hmap
28 | *.ipa
29 | *.dSYM.zip
30 | *.dSYM
31 |
32 | ## Playgrounds
33 | timeline.xctimeline
34 | playground.xcworkspace
35 |
36 | # Swift Package Manager
37 | #
38 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
39 | # Packages/
40 | # Package.pins
41 | # Package.resolved
42 | .build/
43 |
44 | # CocoaPods
45 | #
46 | # We recommend against adding the Pods directory to your .gitignore. However
47 | # you should judge for yourself, the pros and cons are mentioned at:
48 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
49 | #
50 | # Pods/
51 |
52 | # Carthage
53 | #
54 | # Add this line if you want to avoid checking in source code from Carthage dependencies.
55 | # Carthage/Checkouts
56 |
57 | Carthage/Build
58 |
59 | # fastlane
60 | #
61 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
62 | # screenshots whenever they are needed.
63 | # For more information about the recommended setup visit:
64 | # https://docs.fastlane.tools/best-practices/source-control/#source-control
65 |
66 | fastlane/report.xml
67 | fastlane/Preview.html
68 | fastlane/screenshots
69 | fastlane/test_output
70 |
71 | # mac
72 | .DS_Store
73 |
--------------------------------------------------------------------------------
/BlazeDemo/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "20x20",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "20x20",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "29x29",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "29x29",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "40x40",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "40x40",
31 | "scale" : "3x"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "size" : "60x60",
36 | "scale" : "2x"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "size" : "60x60",
41 | "scale" : "3x"
42 | },
43 | {
44 | "idiom" : "ipad",
45 | "size" : "20x20",
46 | "scale" : "1x"
47 | },
48 | {
49 | "idiom" : "ipad",
50 | "size" : "20x20",
51 | "scale" : "2x"
52 | },
53 | {
54 | "idiom" : "ipad",
55 | "size" : "29x29",
56 | "scale" : "1x"
57 | },
58 | {
59 | "idiom" : "ipad",
60 | "size" : "29x29",
61 | "scale" : "2x"
62 | },
63 | {
64 | "idiom" : "ipad",
65 | "size" : "40x40",
66 | "scale" : "1x"
67 | },
68 | {
69 | "idiom" : "ipad",
70 | "size" : "40x40",
71 | "scale" : "2x"
72 | },
73 | {
74 | "idiom" : "ipad",
75 | "size" : "76x76",
76 | "scale" : "1x"
77 | },
78 | {
79 | "idiom" : "ipad",
80 | "size" : "76x76",
81 | "scale" : "2x"
82 | },
83 | {
84 | "idiom" : "ipad",
85 | "size" : "83.5x83.5",
86 | "scale" : "2x"
87 | },
88 | {
89 | "idiom" : "ios-marketing",
90 | "size" : "1024x1024",
91 | "scale" : "1x"
92 | }
93 | ],
94 | "info" : {
95 | "version" : 1,
96 | "author" : "xcode"
97 | }
98 | }
--------------------------------------------------------------------------------
/BlazeDemo/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // BlazeDemo
4 | //
5 | // Created by Jambu, Vijay on 12/18/17.
6 | // Copyright © 2017 Jambu, Vijay. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | @UIApplicationMain
12 | class AppDelegate: UIResponder, UIApplicationDelegate {
13 |
14 | var window: UIWindow?
15 |
16 |
17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
18 | // Override point for customization after application launch.
19 | return true
20 | }
21 |
22 | func applicationWillResignActive(_ application: UIApplication) {
23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
24 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
25 | }
26 |
27 | func applicationDidEnterBackground(_ application: UIApplication) {
28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
30 | }
31 |
32 | func applicationWillEnterForeground(_ application: UIApplication) {
33 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
34 | }
35 |
36 | func applicationDidBecomeActive(_ application: UIApplication) {
37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
38 | }
39 |
40 | func applicationWillTerminate(_ application: UIApplication) {
41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
42 | }
43 |
44 |
45 | }
46 |
47 |
--------------------------------------------------------------------------------
/BlazeDemo.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 48;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | C1C5D37E1FE8347200AAD37E /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1C5D37D1FE8347200AAD37E /* AppDelegate.swift */; };
11 | C1C5D3801FE8347200AAD37E /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1C5D37F1FE8347200AAD37E /* ViewController.swift */; };
12 | C1C5D3831FE8347200AAD37E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C1C5D3811FE8347200AAD37E /* Main.storyboard */; };
13 | C1C5D3851FE8347200AAD37E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C1C5D3841FE8347200AAD37E /* Assets.xcassets */; };
14 | C1C5D3881FE8347200AAD37E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C1C5D3861FE8347200AAD37E /* LaunchScreen.storyboard */; };
15 | /* End PBXBuildFile section */
16 |
17 | /* Begin PBXFileReference section */
18 | C1C5D37A1FE8347200AAD37E /* BlazeDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BlazeDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
19 | C1C5D37D1FE8347200AAD37E /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
20 | C1C5D37F1FE8347200AAD37E /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
21 | C1C5D3821FE8347200AAD37E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
22 | C1C5D3841FE8347200AAD37E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
23 | C1C5D3871FE8347200AAD37E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
24 | C1C5D3891FE8347200AAD37E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
25 | /* End PBXFileReference section */
26 |
27 | /* Begin PBXFrameworksBuildPhase section */
28 | C1C5D3771FE8347200AAD37E /* Frameworks */ = {
29 | isa = PBXFrameworksBuildPhase;
30 | buildActionMask = 2147483647;
31 | files = (
32 | );
33 | runOnlyForDeploymentPostprocessing = 0;
34 | };
35 | /* End PBXFrameworksBuildPhase section */
36 |
37 | /* Begin PBXGroup section */
38 | C1C5D3711FE8347200AAD37E = {
39 | isa = PBXGroup;
40 | children = (
41 | C1C5D37C1FE8347200AAD37E /* BlazeDemo */,
42 | C1C5D37B1FE8347200AAD37E /* Products */,
43 | );
44 | sourceTree = "";
45 | };
46 | C1C5D37B1FE8347200AAD37E /* Products */ = {
47 | isa = PBXGroup;
48 | children = (
49 | C1C5D37A1FE8347200AAD37E /* BlazeDemo.app */,
50 | );
51 | name = Products;
52 | sourceTree = "";
53 | };
54 | C1C5D37C1FE8347200AAD37E /* BlazeDemo */ = {
55 | isa = PBXGroup;
56 | children = (
57 | C1C5D37D1FE8347200AAD37E /* AppDelegate.swift */,
58 | C1C5D37F1FE8347200AAD37E /* ViewController.swift */,
59 | C1C5D3811FE8347200AAD37E /* Main.storyboard */,
60 | C1C5D3841FE8347200AAD37E /* Assets.xcassets */,
61 | C1C5D3861FE8347200AAD37E /* LaunchScreen.storyboard */,
62 | C1C5D3891FE8347200AAD37E /* Info.plist */,
63 | );
64 | path = BlazeDemo;
65 | sourceTree = "";
66 | };
67 | /* End PBXGroup section */
68 |
69 | /* Begin PBXNativeTarget section */
70 | C1C5D3791FE8347200AAD37E /* BlazeDemo */ = {
71 | isa = PBXNativeTarget;
72 | buildConfigurationList = C1C5D38C1FE8347200AAD37E /* Build configuration list for PBXNativeTarget "BlazeDemo" */;
73 | buildPhases = (
74 | C1C5D3761FE8347200AAD37E /* Sources */,
75 | C1C5D3771FE8347200AAD37E /* Frameworks */,
76 | C1C5D3781FE8347200AAD37E /* Resources */,
77 | );
78 | buildRules = (
79 | );
80 | dependencies = (
81 | );
82 | name = BlazeDemo;
83 | productName = BlazeDemo;
84 | productReference = C1C5D37A1FE8347200AAD37E /* BlazeDemo.app */;
85 | productType = "com.apple.product-type.application";
86 | };
87 | /* End PBXNativeTarget section */
88 |
89 | /* Begin PBXProject section */
90 | C1C5D3721FE8347200AAD37E /* Project object */ = {
91 | isa = PBXProject;
92 | attributes = {
93 | LastSwiftUpdateCheck = 0920;
94 | LastUpgradeCheck = 0920;
95 | ORGANIZATIONNAME = "Jambu, Vijay";
96 | TargetAttributes = {
97 | C1C5D3791FE8347200AAD37E = {
98 | CreatedOnToolsVersion = 9.2;
99 | ProvisioningStyle = Automatic;
100 | };
101 | };
102 | };
103 | buildConfigurationList = C1C5D3751FE8347200AAD37E /* Build configuration list for PBXProject "BlazeDemo" */;
104 | compatibilityVersion = "Xcode 8.0";
105 | developmentRegion = en;
106 | hasScannedForEncodings = 0;
107 | knownRegions = (
108 | en,
109 | Base,
110 | );
111 | mainGroup = C1C5D3711FE8347200AAD37E;
112 | productRefGroup = C1C5D37B1FE8347200AAD37E /* Products */;
113 | projectDirPath = "";
114 | projectRoot = "";
115 | targets = (
116 | C1C5D3791FE8347200AAD37E /* BlazeDemo */,
117 | );
118 | };
119 | /* End PBXProject section */
120 |
121 | /* Begin PBXResourcesBuildPhase section */
122 | C1C5D3781FE8347200AAD37E /* Resources */ = {
123 | isa = PBXResourcesBuildPhase;
124 | buildActionMask = 2147483647;
125 | files = (
126 | C1C5D3881FE8347200AAD37E /* LaunchScreen.storyboard in Resources */,
127 | C1C5D3851FE8347200AAD37E /* Assets.xcassets in Resources */,
128 | C1C5D3831FE8347200AAD37E /* Main.storyboard in Resources */,
129 | );
130 | runOnlyForDeploymentPostprocessing = 0;
131 | };
132 | /* End PBXResourcesBuildPhase section */
133 |
134 | /* Begin PBXSourcesBuildPhase section */
135 | C1C5D3761FE8347200AAD37E /* Sources */ = {
136 | isa = PBXSourcesBuildPhase;
137 | buildActionMask = 2147483647;
138 | files = (
139 | C1C5D3801FE8347200AAD37E /* ViewController.swift in Sources */,
140 | C1C5D37E1FE8347200AAD37E /* AppDelegate.swift in Sources */,
141 | );
142 | runOnlyForDeploymentPostprocessing = 0;
143 | };
144 | /* End PBXSourcesBuildPhase section */
145 |
146 | /* Begin PBXVariantGroup section */
147 | C1C5D3811FE8347200AAD37E /* Main.storyboard */ = {
148 | isa = PBXVariantGroup;
149 | children = (
150 | C1C5D3821FE8347200AAD37E /* Base */,
151 | );
152 | name = Main.storyboard;
153 | sourceTree = "";
154 | };
155 | C1C5D3861FE8347200AAD37E /* LaunchScreen.storyboard */ = {
156 | isa = PBXVariantGroup;
157 | children = (
158 | C1C5D3871FE8347200AAD37E /* Base */,
159 | );
160 | name = LaunchScreen.storyboard;
161 | sourceTree = "";
162 | };
163 | /* End PBXVariantGroup section */
164 |
165 | /* Begin XCBuildConfiguration section */
166 | C1C5D38A1FE8347200AAD37E /* Debug */ = {
167 | isa = XCBuildConfiguration;
168 | buildSettings = {
169 | ALWAYS_SEARCH_USER_PATHS = NO;
170 | CLANG_ANALYZER_NONNULL = YES;
171 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
172 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
173 | CLANG_CXX_LIBRARY = "libc++";
174 | CLANG_ENABLE_MODULES = YES;
175 | CLANG_ENABLE_OBJC_ARC = YES;
176 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
177 | CLANG_WARN_BOOL_CONVERSION = YES;
178 | CLANG_WARN_COMMA = YES;
179 | CLANG_WARN_CONSTANT_CONVERSION = YES;
180 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
181 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
182 | CLANG_WARN_EMPTY_BODY = YES;
183 | CLANG_WARN_ENUM_CONVERSION = YES;
184 | CLANG_WARN_INFINITE_RECURSION = YES;
185 | CLANG_WARN_INT_CONVERSION = YES;
186 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
187 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
188 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
189 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
190 | CLANG_WARN_STRICT_PROTOTYPES = YES;
191 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
192 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
193 | CLANG_WARN_UNREACHABLE_CODE = YES;
194 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
195 | CODE_SIGN_IDENTITY = "iPhone Developer";
196 | COPY_PHASE_STRIP = NO;
197 | DEBUG_INFORMATION_FORMAT = dwarf;
198 | ENABLE_STRICT_OBJC_MSGSEND = YES;
199 | ENABLE_TESTABILITY = YES;
200 | GCC_C_LANGUAGE_STANDARD = gnu11;
201 | GCC_DYNAMIC_NO_PIC = NO;
202 | GCC_NO_COMMON_BLOCKS = YES;
203 | GCC_OPTIMIZATION_LEVEL = 0;
204 | GCC_PREPROCESSOR_DEFINITIONS = (
205 | "DEBUG=1",
206 | "$(inherited)",
207 | );
208 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
209 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
210 | GCC_WARN_UNDECLARED_SELECTOR = YES;
211 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
212 | GCC_WARN_UNUSED_FUNCTION = YES;
213 | GCC_WARN_UNUSED_VARIABLE = YES;
214 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
215 | MTL_ENABLE_DEBUG_INFO = YES;
216 | ONLY_ACTIVE_ARCH = YES;
217 | SDKROOT = iphoneos;
218 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
219 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
220 | };
221 | name = Debug;
222 | };
223 | C1C5D38B1FE8347200AAD37E /* Release */ = {
224 | isa = XCBuildConfiguration;
225 | buildSettings = {
226 | ALWAYS_SEARCH_USER_PATHS = NO;
227 | CLANG_ANALYZER_NONNULL = YES;
228 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
229 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
230 | CLANG_CXX_LIBRARY = "libc++";
231 | CLANG_ENABLE_MODULES = YES;
232 | CLANG_ENABLE_OBJC_ARC = YES;
233 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
234 | CLANG_WARN_BOOL_CONVERSION = YES;
235 | CLANG_WARN_COMMA = YES;
236 | CLANG_WARN_CONSTANT_CONVERSION = YES;
237 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
238 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
239 | CLANG_WARN_EMPTY_BODY = YES;
240 | CLANG_WARN_ENUM_CONVERSION = YES;
241 | CLANG_WARN_INFINITE_RECURSION = YES;
242 | CLANG_WARN_INT_CONVERSION = YES;
243 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
244 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
245 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
246 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
247 | CLANG_WARN_STRICT_PROTOTYPES = YES;
248 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
249 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
250 | CLANG_WARN_UNREACHABLE_CODE = YES;
251 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
252 | CODE_SIGN_IDENTITY = "iPhone Developer";
253 | COPY_PHASE_STRIP = NO;
254 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
255 | ENABLE_NS_ASSERTIONS = NO;
256 | ENABLE_STRICT_OBJC_MSGSEND = YES;
257 | GCC_C_LANGUAGE_STANDARD = gnu11;
258 | GCC_NO_COMMON_BLOCKS = YES;
259 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
260 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
261 | GCC_WARN_UNDECLARED_SELECTOR = YES;
262 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
263 | GCC_WARN_UNUSED_FUNCTION = YES;
264 | GCC_WARN_UNUSED_VARIABLE = YES;
265 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
266 | MTL_ENABLE_DEBUG_INFO = NO;
267 | SDKROOT = iphoneos;
268 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
269 | VALIDATE_PRODUCT = YES;
270 | };
271 | name = Release;
272 | };
273 | C1C5D38D1FE8347200AAD37E /* Debug */ = {
274 | isa = XCBuildConfiguration;
275 | buildSettings = {
276 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
277 | CODE_SIGN_STYLE = Automatic;
278 | DEVELOPMENT_TEAM = 2JJZ96P8P5;
279 | INFOPLIST_FILE = BlazeDemo/Info.plist;
280 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
281 | PRODUCT_BUNDLE_IDENTIFIER = CA.BlazeDemo;
282 | PRODUCT_NAME = "$(TARGET_NAME)";
283 | SWIFT_VERSION = 4.0;
284 | TARGETED_DEVICE_FAMILY = "1,2";
285 | };
286 | name = Debug;
287 | };
288 | C1C5D38E1FE8347200AAD37E /* Release */ = {
289 | isa = XCBuildConfiguration;
290 | buildSettings = {
291 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
292 | CODE_SIGN_STYLE = Automatic;
293 | DEVELOPMENT_TEAM = 2JJZ96P8P5;
294 | INFOPLIST_FILE = BlazeDemo/Info.plist;
295 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
296 | PRODUCT_BUNDLE_IDENTIFIER = CA.BlazeDemo;
297 | PRODUCT_NAME = "$(TARGET_NAME)";
298 | SWIFT_VERSION = 4.0;
299 | TARGETED_DEVICE_FAMILY = "1,2";
300 | };
301 | name = Release;
302 | };
303 | /* End XCBuildConfiguration section */
304 |
305 | /* Begin XCConfigurationList section */
306 | C1C5D3751FE8347200AAD37E /* Build configuration list for PBXProject "BlazeDemo" */ = {
307 | isa = XCConfigurationList;
308 | buildConfigurations = (
309 | C1C5D38A1FE8347200AAD37E /* Debug */,
310 | C1C5D38B1FE8347200AAD37E /* Release */,
311 | );
312 | defaultConfigurationIsVisible = 0;
313 | defaultConfigurationName = Release;
314 | };
315 | C1C5D38C1FE8347200AAD37E /* Build configuration list for PBXNativeTarget "BlazeDemo" */ = {
316 | isa = XCConfigurationList;
317 | buildConfigurations = (
318 | C1C5D38D1FE8347200AAD37E /* Debug */,
319 | C1C5D38E1FE8347200AAD37E /* Release */,
320 | );
321 | defaultConfigurationIsVisible = 0;
322 | defaultConfigurationName = Release;
323 | };
324 | /* End XCConfigurationList section */
325 | };
326 | rootObject = C1C5D3721FE8347200AAD37E /* Project object */;
327 | }
328 |
--------------------------------------------------------------------------------
/ipas/BlazeDemo 2018-03-09 10-19-18/Packaging.log:
--------------------------------------------------------------------------------
1 | 2018-03-09 18:16:43 +0000 Initial pipeline context: ', distributionTask(resolved)='2', distributionMethod(resolved)='', team(resolved)=''>
2 | Chain (11, self inclusive):
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionCreateDestRootStep
16 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionCopyItemStep
17 | 2018-03-09 18:16:43 +0000 Running /usr/bin/ditto '-V' '/Users/jamvi01/Library/Developer/Xcode/Archives/2018-03-09/BlazeDemo 3-9-18, 10.05 AM.xcarchive/Products/Applications/BlazeDemo.app' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app'
18 | 2018-03-09 18:16:43 +0000 >>> Copying /Users/jamvi01/Library/Developer/Xcode/Archives/2018-03-09/BlazeDemo 3-9-18, 10.05 AM.xcarchive/Products/Applications/BlazeDemo.app
19 | 2018-03-09 18:16:43 +0000 copying file ./_CodeSignature/CodeResources ...
20 | 2018-03-09 18:16:43 +0000 8645 bytes for ./_CodeSignature/CodeResources
21 | 2018-03-09 18:16:43 +0000 copying file ./archived-expanded-entitlements.xcent ...
22 | 2018-03-09 18:16:43 +0000 362 bytes for ./archived-expanded-entitlements.xcent
23 | 2018-03-09 18:16:43 +0000 copying file ./Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib ...
24 | 2018-03-09 18:16:43 +0000 1988 bytes for ./Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib
25 | 2018-03-09 18:16:43 +0000 copying file ./Base.lproj/LaunchScreen.storyboardc/Info.plist ...
26 | 2018-03-09 18:16:43 +0000 258 bytes for ./Base.lproj/LaunchScreen.storyboardc/Info.plist
27 | copying file ./Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib ...
28 | 2018-03-09 18:16:43 +0000 832 bytes for ./Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib
29 | 2018-03-09 18:16:43 +0000 copying file ./Base.lproj/Main.storyboardc/Info.plist ...
30 | 2018-03-09 18:16:43 +0000 258 bytes for ./Base.lproj/Main.storyboardc/Info.plist
31 | 2018-03-09 18:16:43 +0000 copying file ./Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib ...
32 | 2018-03-09 18:16:43 +0000 821 bytes for ./Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib
33 | copying file ./BlazeDemo ...
34 | 2018-03-09 18:16:43 +0000 365216 bytes for ./BlazeDemo
35 | copying file ./embedded.mobileprovision ...
36 | 2018-03-09 18:16:43 +0000 147625 bytes for ./embedded.mobileprovision
37 | 2018-03-09 18:16:43 +0000 copying file ./Frameworks/libswiftCore.dylib ...
38 | 2018-03-09 18:16:43 +0000 68838896 bytes for ./Frameworks/libswiftCore.dylib
39 | copying file ./Frameworks/libswiftCoreFoundation.dylib ...
40 | 2018-03-09 18:16:43 +0000 257648 bytes for ./Frameworks/libswiftCoreFoundation.dylib
41 | copying file ./Frameworks/libswiftCoreGraphics.dylib ...
42 | 1268784 bytes for ./Frameworks/libswiftCoreGraphics.dylib
43 | copying file ./Frameworks/libswiftCoreImage.dylib ...
44 | 258208 bytes for ./Frameworks/libswiftCoreImage.dylib
45 | copying file ./Frameworks/libswiftDarwin.dylib ...
46 | 2018-03-09 18:16:43 +0000 599216 bytes for ./Frameworks/libswiftDarwin.dylib
47 | copying file ./Frameworks/libswiftDispatch.dylib ...
48 | 2018-03-09 18:16:43 +0000 2440688 bytes for ./Frameworks/libswiftDispatch.dylib
49 | 2018-03-09 18:16:43 +0000 copying file ./Frameworks/libswiftFoundation.dylib ...
50 | 2018-03-09 18:16:43 +0000 27746432 bytes for ./Frameworks/libswiftFoundation.dylib
51 | 2018-03-09 18:16:43 +0000 copying file ./Frameworks/libswiftMetal.dylib ...
52 | 399328 bytes for ./Frameworks/libswiftMetal.dylib
53 | copying file ./Frameworks/libswiftObjectiveC.dylib ...
54 | 505728 bytes for ./Frameworks/libswiftObjectiveC.dylib
55 | copying file ./Frameworks/libswiftos.dylib ...
56 | 446336 bytes for ./Frameworks/libswiftos.dylib
57 | copying file ./Frameworks/libswiftQuartzCore.dylib ...
58 | 2018-03-09 18:16:43 +0000 310928 bytes for ./Frameworks/libswiftQuartzCore.dylib
59 | copying file ./Frameworks/libswiftUIKit.dylib ...
60 | 2018-03-09 18:16:43 +0000 789136 bytes for ./Frameworks/libswiftUIKit.dylib
61 | 2018-03-09 18:16:43 +0000 copying file ./Info.plist ...
62 | 2018-03-09 18:16:43 +0000 1192 bytes for ./Info.plist
63 | copying file ./PkgInfo ...
64 | 2018-03-09 18:16:43 +0000 8 bytes for ./PkgInfo
65 | 2018-03-09 18:16:43 +0000 /usr/bin/ditto exited with 0
66 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionEmbedProfileStep
67 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
68 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
69 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
70 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
71 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
72 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
73 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
74 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
75 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
76 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
77 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
78 | 2018-03-09 18:16:43 +0000 Skipping profile for item: '>
79 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionAppThinningPlistStep
80 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionAppThinningPlistStep because it said so
81 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionCompileBitcodeStep
82 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCompileBitcodeStep because it said so
83 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionCodeSlimmingStep
84 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionCopyBCSymbolMapsStep
85 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
86 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
87 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
88 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
89 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
90 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
91 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
92 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
93 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
94 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
95 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
96 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
97 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionCopyBCSymbolMapsStep because it said so
98 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionSymbolsStep
99 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
100 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
101 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
102 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
103 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
104 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
105 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
106 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
107 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
108 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
109 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
110 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
111 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionSymbolsStep because it said so
112 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionAppThinningStep
113 | 2018-03-09 18:16:43 +0000 Skipping step: IDEDistributionAppThinningStep because it said so
114 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionODRStep
115 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionStripXattrsStep
116 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
117 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
118 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
119 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
120 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
121 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
122 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
123 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
124 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
125 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
126 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
127 | 2018-03-09 18:16:43 +0000 Skipping stripping extended attributes of item: '>
128 | 2018-03-09 18:16:43 +0000 Running /usr/bin/xattr '-crs' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app'
129 | 2018-03-09 18:16:43 +0000 /usr/bin/xattr exited with 0
130 | 2018-03-09 18:16:43 +0000 Processing step: IDEDistributionCodesignStep
131 | 2018-03-09 18:16:43 +0000 Applying entitlements delta for '> from : {
132 | }
133 | 2018-03-09 18:16:43 +0000 Entitlements for '>: {
134 | }
135 | 2018-03-09 18:16:43 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsLHVnOF
136 | 2018-03-09 18:16:43 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsLHVnOF' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftCore.dylib'
137 | 2018-03-09 18:16:44 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftCore.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftCore]
138 | 2018-03-09 18:16:44 +0000 /usr/bin/codesign exited with 0
139 | 2018-03-09 18:16:44 +0000 Applying entitlements delta for '> from : {
140 | }
141 | 2018-03-09 18:16:44 +0000 Entitlements for '>: {
142 | }
143 | 2018-03-09 18:16:44 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementseyN9p9
144 | 2018-03-09 18:16:44 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementseyN9p9' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftCoreFoundation.dylib'
145 | 2018-03-09 18:16:44 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftCoreFoundation.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftCoreFoundation]
146 | 2018-03-09 18:16:44 +0000 /usr/bin/codesign exited with 0
147 | 2018-03-09 18:16:44 +0000 Applying entitlements delta for '> from : {
148 | }
149 | 2018-03-09 18:16:44 +0000 Entitlements for '>: {
150 | }
151 | 2018-03-09 18:16:44 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsJsn9gs
152 | 2018-03-09 18:16:44 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsJsn9gs' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftCoreGraphics.dylib'
153 | 2018-03-09 18:16:44 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftCoreGraphics.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftCoreGraphics]
154 | 2018-03-09 18:16:44 +0000 /usr/bin/codesign exited with 0
155 | 2018-03-09 18:16:44 +0000 Applying entitlements delta for '> from : {
156 | }
157 | 2018-03-09 18:16:44 +0000 Entitlements for '>: {
158 | }
159 | 2018-03-09 18:16:44 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsN7gEke
160 | 2018-03-09 18:16:44 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsN7gEke' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftCoreImage.dylib'
161 | 2018-03-09 18:16:44 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftCoreImage.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftCoreImage]
162 | 2018-03-09 18:16:44 +0000 /usr/bin/codesign exited with 0
163 | 2018-03-09 18:16:44 +0000 Applying entitlements delta for '> from : {
164 | }
165 | 2018-03-09 18:16:44 +0000 Entitlements for '>: {
166 | }
167 | 2018-03-09 18:16:44 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsdmUVXS
168 | 2018-03-09 18:16:44 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsdmUVXS' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftDarwin.dylib'
169 | 2018-03-09 18:16:44 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftDarwin.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftDarwin]
170 | 2018-03-09 18:16:44 +0000 /usr/bin/codesign exited with 0
171 | 2018-03-09 18:16:44 +0000 Applying entitlements delta for '> from : {
172 | }
173 | 2018-03-09 18:16:44 +0000 Entitlements for '>: {
174 | }
175 | 2018-03-09 18:16:44 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlements93W5ik
176 | 2018-03-09 18:16:44 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlements93W5ik' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftDispatch.dylib'
177 | 2018-03-09 18:16:44 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftDispatch.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftDispatch]
178 | 2018-03-09 18:16:44 +0000 /usr/bin/codesign exited with 0
179 | 2018-03-09 18:16:44 +0000 Applying entitlements delta for '> from : {
180 | }
181 | 2018-03-09 18:16:44 +0000 Entitlements for '>: {
182 | }
183 | 2018-03-09 18:16:44 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementszeklGT
184 | 2018-03-09 18:16:44 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementszeklGT' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftFoundation.dylib'
185 | 2018-03-09 18:16:45 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftFoundation.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftFoundation]
186 | 2018-03-09 18:16:45 +0000 /usr/bin/codesign exited with 0
187 | 2018-03-09 18:16:45 +0000 Applying entitlements delta for '> from : {
188 | }
189 | 2018-03-09 18:16:45 +0000 Entitlements for '>: {
190 | }
191 | 2018-03-09 18:16:45 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementscA9Z5j
192 | 2018-03-09 18:16:45 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementscA9Z5j' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftMetal.dylib'
193 | 2018-03-09 18:16:45 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftMetal.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftMetal]
194 | 2018-03-09 18:16:45 +0000 /usr/bin/codesign exited with 0
195 | 2018-03-09 18:16:45 +0000 Applying entitlements delta for '> from : {
196 | }
197 | 2018-03-09 18:16:45 +0000 Entitlements for '>: {
198 | }
199 | 2018-03-09 18:16:45 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsHvik9t
200 | 2018-03-09 18:16:45 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsHvik9t' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftObjectiveC.dylib'
201 | 2018-03-09 18:16:45 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftObjectiveC.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftObjectiveC]
202 | 2018-03-09 18:16:45 +0000 /usr/bin/codesign exited with 0
203 | 2018-03-09 18:16:45 +0000 Applying entitlements delta for '> from : {
204 | }
205 | 2018-03-09 18:16:45 +0000 Entitlements for '>: {
206 | }
207 | 2018-03-09 18:16:45 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlements9vPR4r
208 | 2018-03-09 18:16:45 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlements9vPR4r' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftQuartzCore.dylib'
209 | 2018-03-09 18:16:45 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftQuartzCore.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftQuartzCore]
210 | 2018-03-09 18:16:45 +0000 /usr/bin/codesign exited with 0
211 | 2018-03-09 18:16:45 +0000 Applying entitlements delta for '> from : {
212 | }
213 | 2018-03-09 18:16:45 +0000 Entitlements for '>: {
214 | }
215 | 2018-03-09 18:16:45 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsD0xHj1
216 | 2018-03-09 18:16:45 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsD0xHj1' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftUIKit.dylib'
217 | 2018-03-09 18:16:45 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftUIKit.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftUIKit]
218 | 2018-03-09 18:16:45 +0000 /usr/bin/codesign exited with 0
219 | 2018-03-09 18:16:45 +0000 Applying entitlements delta for '> from : {
220 | }
221 | 2018-03-09 18:16:45 +0000 Entitlements for '>: {
222 | }
223 | 2018-03-09 18:16:45 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlements7aMN60
224 | 2018-03-09 18:16:45 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlements7aMN60' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftos.dylib'
225 | 2018-03-09 18:16:45 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app/Frameworks/libswiftos.dylib: signed Mach-O universal (armv7 armv7s arm64) [com.apple.dt.runtime.swiftos]
226 | 2018-03-09 18:16:45 +0000 /usr/bin/codesign exited with 0
227 | 2018-03-09 18:16:45 +0000 Applying entitlements delta for '> from : {
228 | }
229 | 2018-03-09 18:16:45 +0000 Entitlements for '>: {
230 | "application-identifier" = "2JJZ96P8P5.CA.BlazeDemo";
231 | "com.apple.developer.team-identifier" = 2JJZ96P8P5;
232 | "get-task-allow" = 0;
233 | "keychain-access-groups" = (
234 | "2JJZ96P8P5.CA.BlazeDemo"
235 | );
236 | }
237 | 2018-03-09 18:16:45 +0000 Writing entitlements for '> to: /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsyJtGML
238 | 2018-03-09 18:16:45 +0000 Running /usr/bin/codesign '-vvv' '--force' '--sign' 'F4898C061B3856DF9F015E7EAA7305A4BB3E486F' '--preserve-metadata=identifier,flags' '--entitlements' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/entitlementsyJtGML' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app'
239 | 2018-03-09 18:16:46 +0000 /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root/Payload/BlazeDemo.app: signed app bundle with Mach-O universal (armv7 arm64) [CA.BlazeDemo]
240 | 2018-03-09 18:16:46 +0000 /usr/bin/codesign exited with 0
241 | 2018-03-09 18:16:46 +0000 Processing step: IDEDistributionStreamingZipItemStep
242 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
243 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
244 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
245 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
246 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
247 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
248 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
249 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
250 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
251 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
252 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
253 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
254 | 2018-03-09 18:16:46 +0000 Skipping step: IDEDistributionStreamingZipItemStep because it said so
255 | 2018-03-09 18:16:46 +0000 Processing step: IDEDistributionCreateIPAStep
256 | 2018-03-09 18:16:46 +0000 Running /usr/bin/ditto '-V' '-c' '-k' '--norsrc' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root' '/var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Packages/BlazeDemo.ipa'
257 | 2018-03-09 18:16:46 +0000 >>> Copying /var/folders/rf/3bs3nmnd53s12sk1lz6f5rq51rdg4f/T/XcodeDistPipeline.GjA/Root
258 | 2018-03-09 18:16:46 +0000 copying file ./Payload/BlazeDemo.app/_CodeSignature/CodeResources ...
259 | 2018-03-09 18:16:46 +0000 8645 bytes for ./Payload/BlazeDemo.app/_CodeSignature/CodeResources
260 | 2018-03-09 18:16:46 +0000 copying file ./Payload/BlazeDemo.app/archived-expanded-entitlements.xcent ...
261 | 2018-03-09 18:16:46 +0000 362 bytes for ./Payload/BlazeDemo.app/archived-expanded-entitlements.xcent
262 | 2018-03-09 18:16:46 +0000 copying file ./Payload/BlazeDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib ...
263 | 2018-03-09 18:16:46 +0000 1988 bytes for ./Payload/BlazeDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib
264 | copying file ./Payload/BlazeDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist ...
265 | 2018-03-09 18:16:46 +0000 258 bytes for ./Payload/BlazeDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist
266 | copying file ./Payload/BlazeDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib ...
267 | 2018-03-09 18:16:46 +0000 832 bytes for ./Payload/BlazeDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib
268 | copying file ./Payload/BlazeDemo.app/Base.lproj/Main.storyboardc/Info.plist ...
269 | 2018-03-09 18:16:46 +0000 258 bytes for ./Payload/BlazeDemo.app/Base.lproj/Main.storyboardc/Info.plist
270 | 2018-03-09 18:16:46 +0000 copying file ./Payload/BlazeDemo.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib ...
271 | 2018-03-09 18:16:46 +0000 821 bytes for ./Payload/BlazeDemo.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib
272 | copying file ./Payload/BlazeDemo.app/BlazeDemo ...
273 | 2018-03-09 18:16:46 +0000 200336 bytes for ./Payload/BlazeDemo.app/BlazeDemo
274 | copying file ./Payload/BlazeDemo.app/embedded.mobileprovision ...
275 | 2018-03-09 18:16:46 +0000 14098 bytes for ./Payload/BlazeDemo.app/embedded.mobileprovision
276 | 2018-03-09 18:16:46 +0000 copying file ./Payload/BlazeDemo.app/Frameworks/libswiftCore.dylib ...
277 | 2018-03-09 18:16:46 +0000 21079936 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftCore.dylib
278 | copying file ./Payload/BlazeDemo.app/Frameworks/libswiftCoreFoundation.dylib ...
279 | 2018-03-09 18:16:46 +0000 208640 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftCoreFoundation.dylib
280 | copying file ./Payload/BlazeDemo.app/Frameworks/libswiftCoreGraphics.dylib ...
281 | 2018-03-09 18:16:46 +0000 578096 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftCoreGraphics.dylib
282 | copying file ./Payload/BlazeDemo.app/Frameworks/libswiftCoreImage.dylib ...
283 | 2018-03-09 18:16:47 +0000 209200 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftCoreImage.dylib
284 | copying file ./Payload/BlazeDemo.app/Frameworks/libswiftDarwin.dylib ...
285 | 2018-03-09 18:16:47 +0000 303408 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftDarwin.dylib
286 | copying file ./Payload/BlazeDemo.app/Frameworks/libswiftDispatch.dylib ...
287 | 2018-03-09 18:16:47 +0000 1009600 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftDispatch.dylib
288 | copying file ./Payload/BlazeDemo.app/Frameworks/libswiftFoundation.dylib ...
289 | 2018-03-09 18:16:47 +0000 8413632 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftFoundation.dylib
290 | 2018-03-09 18:16:47 +0000 copying file ./Payload/BlazeDemo.app/Frameworks/libswiftMetal.dylib ...
291 | 2018-03-09 18:16:47 +0000 251600 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftMetal.dylib
292 | copying file ./Payload/BlazeDemo.app/Frameworks/libswiftObjectiveC.dylib ...
293 | 2018-03-09 18:16:47 +0000 259280 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftObjectiveC.dylib
294 | copying file ./Payload/BlazeDemo.app/Frameworks/libswiftos.dylib ...
295 | 2018-03-09 18:16:47 +0000 249248 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftos.dylib
296 | 2018-03-09 18:16:47 +0000 copying file ./Payload/BlazeDemo.app/Frameworks/libswiftQuartzCore.dylib ...
297 | 2018-03-09 18:16:47 +0000 212560 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftQuartzCore.dylib
298 | copying file ./Payload/BlazeDemo.app/Frameworks/libswiftUIKit.dylib ...
299 | 2018-03-09 18:16:47 +0000 361840 bytes for ./Payload/BlazeDemo.app/Frameworks/libswiftUIKit.dylib
300 | 2018-03-09 18:16:47 +0000 copying file ./Payload/BlazeDemo.app/Info.plist ...
301 | 1192 bytes for ./Payload/BlazeDemo.app/Info.plist
302 | copying file ./Payload/BlazeDemo.app/PkgInfo ...
303 | 8 bytes for ./Payload/BlazeDemo.app/PkgInfo
304 | 2018-03-09 18:16:47 +0000 /usr/bin/ditto exited with 0
305 | 2018-03-09 18:16:47 +0000 Processing step: IDEDistributionCreateManifestStep
306 |
--------------------------------------------------------------------------------