Known Devices:
Jonathan’s MacBook Pro [515AE48F-E983-5E3C-8E87-8AA3A78813F8]
Apple TV 1080p (9.0) [494728A1-EBE6-419A-A751-313CB09FF53B]
Apple Watch - 38mm (2.0) [1FC45635-4F46-47E5-B0FB-93D45F6A9C24]
Apple Watch - 38mm (2.0) [73ECD831-EE38-40FE-8B45-6B0FB980F78B]
Apple Watch - 38mm (2.0) [BB8E2C79-66A7-4CC1-9CB4-3EA7C8819F75]
Apple Watch - 38mm (2.0) [98E0F2AB-2B43-43F4-97BF-ABB2E2483F86]
Apple Watch - 38mm (2.0) [0B82845D-7C95-4AFF-9A86-913AE4F3B96D]
Apple Watch - 38mm (2.0) [B4304E5A-3B09-4AE7-9569-0466DFE6A6B6]
Process: instruments [28786]
Path: /Xcode/*/Xcode-beta.app/Contents/Developer/usr/bin/instruments
Identifier: instruments
Version: $[MARKETING_VERSION] (58156.1)
Code Type: X86-64 (Native)
Parent Process: ruby [28667]
Responsible: Terminal [340]
User ID: 502
2015-09-01 09:58:00.085 xcodebuild[26704:320561] stream error: stream error at offset 8: unsupported version number ('1.04')
=== BUILD TARGET Alamofire OSX OF PROJECT Alamofire WITH CONFIGURATION Release ===
Check dependencies
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
cd /Users/moody/git/biketag/app/Carthage/Checkouts/Alamofire
/Xcode/6.4/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -target x86_64-apple-macosx10.9 -incremental -module-name Alamofire -O -sdk /Xcode/6.4/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/
Developer/SDKs/MacOSX10.10.sdk -g -module-cache-path /Users/moody/Library/Developer/Xcode/DerivedData/ModuleCache -Xfrontend -serialize-debugging-options -application-extension -I /Users/moody/Library/Developer/Xcode/DerivedData/Alamofir
Tested on iOS 8 Simulators with all the Keyboard settings "On" (default state).
Partially tested on iOS 7.
- You can turn auto-correct on or off.
- Changing the capitalization has no effect.
- Changing the spell-check settings has no effect.
Any state changes need to be made before the keyboard is presented.
$ tree -d -L 1
.
├── Crashlytics.framework
├── Pods
├── build
├── calabash.framework
├── ci-reports
├── config
├── features
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
- (void) testArrayByEvaluatingQueryCss { | |
NSString *query = @"a"; | |
LPWebQueryType type = LPWebQueryTypeCSS; | |
UIWebView *webView = [self webviewWithFrame:[self iphone4sFrame]]; | |
NSString *jsEvaled = @"[{\"rect\":{\"left\":100,\"top\":363.4375,\"width\":24.890625,\"height\":20,\"x\":112,\"y\":373.4375},\"nodeType\":\"ELEMENT_NODE\",\"nodeName\":\"A\",\"id\":\"\",\"class\":\"\",\"href\":\"http://www.googl.com/\",\"textContent\":\"link\"}]"; | |
id mockWebView = [OCMockObject partialMockForObject:webView]; | |
[[[mockWebView expect] andReturn:jsEvaled] stringByEvaluatingJavaScriptFromString:OCMOCK_ANY]; |
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
``` | |
# The public API is true/false, but we need to pass a path to a dylib to | |
# run-loop. | |
- if args.fetch(:inject_dylib, false) | |
- if simulator_target?(args) | |
- args[:inject_dylib] = Calabash::Dylibs.path_to_sim_dylib | |
- else | |
- args[:inject_dylib] = Cucumber::Dylibs.path_to_device_dylib | |
+ use_dylib = args.fetch(:inject_dylib, nil) | |
+ if use_dylib |
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
#!/usr/bin/env ruby | |
# The symbolicatecrash binary that ships with Xcode 6 is hard to find | |
# and has a bug that requires 'DEVERLOPER_DIR' to be defined. | |
# | |
# Error: "DEVELOPER_DIR" is not defined at \ | |
# Xcode.app/Contents/SharedFrameworks/<snip>/symbolicatecrash line 60 | |
# Usage: | |
# $ symbolicatecrash -v \ | |
# -o symbolicated.log \ |
- Plug in the device and open Xcode
- Choose Window -> Devices from the Xcode menu
- Under the DEVICES section in the left column, choose the device
- To see crash logs, select the View Device Logs button under the Device Information section on the right hand panel
- Find your app in the Process column and select the Crash log to see the contents.
- IMPORTANT Be sure to symbolicate your crash report.
- Export the symbolicated crash report.