- 07 Nov, 2017 1 commit
-
-
xster authored
-
- 28 Sep, 2017 1 commit
-
-
Chris Bracken authored
Differentiate between 'not installed' and 'not working' and emit a more targeted message.
-
- 14 Sep, 2017 1 commit
-
-
Chris Bracken authored
1. Migrate simulator device log tailing to os_log toolchain 2. When the log tag (component) is available (iOS 11/Xcode 9), filter to the set of log lines with tag 'Flutter'. As of iOS 11 / Xcode 9, Flutter engine logs are no longer recorded in the simulator's syslog file, which we previously read using tail -f. Instead they're now accessible through Apple's new macOS/iOS os_log facility, via /usr/bin/log, which supports a relatively flexible query language. When run in non-interactive mode, /usr/bin/log buffers its output in 4k chunks, which is significantly smaller than what's emitted up to the point where the observatory/diagnostics port information is logged. As a workaround we force it to run in interactive mode via the script tool.
-
- 07 Sep, 2017 2 commits
-
-
Chris Bracken authored
This was introduced to suppress libMobileGestalt noise originating from libsystem_asl.dylib. Commit 39680ebf suppresses all application log messages not originating from the app/engine iteself on iOS 10 and above. Since the log message in question is only emitted on devices running iOS >= 10.3.0, this blacklist no longer necessary.
-
Chris Bracken authored
On iOS 10 and above, suppress engine log messages from system components other than Flutter. This eliminates a large amount of keyboard/plugin related noise during edit-refresh development.
-
- 05 Sep, 2017 1 commit
-
-
Chris Bracken authored
ios-deploy 1.9.2 includes fixes for a common source of Xcode breakage (flutter/flutter#4326) with Xcode 8.3.3 + iOS 10.3.3, and is required to to support Xcode 9 (flutter/flutter#11875).
-
- 01 Sep, 2017 1 commit
-
-
Chris Bracken authored
This patch migrates iOS device listing from using Xcode instruments to using the libimobiledevice tools idevice_id and ideviceinfo. ideviceinfo was previously incompatible with iOS 11 physical devices; this has now been fixed. In 37bb5f13 flutter_tools migrated from libimobiledevice-based device listing on iOS to using Xcode instruments to work around the lack of support for iOS 11. Using instruments entails several downsides, including a significantly higher performance hit, and leaking hung DTServiceHub processes in certain cases when a simulator is running, necessitating workarounds in which we watched for, and cleaned up leaked DTServiceHub processes. This patch returns reverts the move to instruments now that it's no longer necessary.
-
- 31 Aug, 2017 1 commit
-
-
Alexandre Ardhuin authored
* upgrade to linter-0.1.35 * re-enable lint prefer_const_constructors * address review comments
-
- 23 Aug, 2017 2 commits
-
-
Chris Bracken authored
This patch supports basic filtering of log lines from physical iOS devices, similar to existing functionality for iOS simulator logging. This patch also suppresses the following two log messages which are emitted at app startup on iOS 10.3 devices: libMobileGestalt MobileGestaltSupport.m:153: pid 123 (Runner) does not have sandbox access for frZQaeyWLUvLjeuEK43hmg and IS NOT appropriately entitled libMobileGestalt MobileGestalt.c:550: no access to InverseDeviceID (see <rdar://problem/11744455>)
-
Mikkel Nygaard Ravn authored
-
- 22 Aug, 2017 2 commits
-
-
Mikkel Nygaard Ravn authored
This reverts commit 8d07d3f6.
-
Mikkel Nygaard Ravn authored
-
- 16 Aug, 2017 1 commit
-
-
xster authored
-
- 13 Jul, 2017 3 commits
-
-
Chris Bracken authored
In some cases, we've seen interactions between Instruments and the iOS simulator that cause hung instruments and DTServiceHub processes. If enough instances pile up, the host machine eventually becomes unresponsive. Until the underlying issue is resolved, manually kill any orphaned instances (where the parent process has died and PPID is 1) before launching another instruments run.
-
xster authored
* Disable cocoapods stats * Add a comment for code readers * fix new test
-
xster authored
* start * with create * refactor cocoapod code, add tests * fix tests * throw when cocoapod missing * obj-c projects don’t use use_framework!
-
- 07 Jul, 2017 1 commit
-
-
xster authored
-
- 29 Jun, 2017 1 commit
-
-
xster authored
-
- 28 Jun, 2017 1 commit
-
-
xster authored
* Guess sign with the first certificate when multiple are available in machine mode * review
-
- 26 Jun, 2017 3 commits
-
-
Chris Bracken authored
And fix a typo in a test description.
-
Chris Bracken authored
Previously, xcodeMajorVersion and xcodeMinorVersion returned null unless xcodeVersionSatisfactory had been called first. We now compute them on demand, and cache the resultant values.
-
Chris Bracken authored
Also, correct an existing test description.
-
- 24 Jun, 2017 1 commit
-
-
Chris Bracken authored
1. Run all Xcode tool invocations through ProcessManager, which allows us to mock out failures, etc. for tests. 2. Add said tests.
-
- 22 Jun, 2017 1 commit
-
-
xster authored
-
- 19 Jun, 2017 1 commit
-
-
Chris Bracken authored
This reverts commit b2909a24. This resubmits the following patches: 1. Use Xcode instruments to list devices (#10801) Eliminates the dependency on idevice_id from libimobiledevice. Instead, uses Xcode built-in functionality. 2. Make device discovery asynchronous (#10803) Migrates DeviceDiscovery.devices and all device-specific lookup to be asynchronous.
-
- 17 Jun, 2017 2 commits
-
-
Chris Bracken authored
* Revert "Make device discovery asynchronous (#10803)" This reverts commit 972be9c8. * Revert "Use Xcode instruments to list devices (#10801)" This reverts commit 37bb5f13. This is to resolve a failure that looks related to a bad install of Xcode 8.0 on our build bots and should be reinstated when the infra issue is diagnosed and resolved. Instruments worked well when this was originally landed, and on the following commit, but started failing two commits after this originally landed. Manual invocation of instruments on the build host currently results in: ``` dyld: Library not loaded: @rpath/InstrumentsAnalysisCore.framework/Versions/A/InstrumentsAnalysisCore Referenced from: /Applications/Xcode8.0.app/Contents/Developer/usr/bin/instruments Reason: image not found Abort trap: 6 ``` It appears the /Applications/Xcode8.0.app/Contents/Applications directory (which contains Instruments) is missing on the host.
-
Chris Bracken authored
Migrates DeviceDiscovery.devices and all device-specific lookup to be asynchronous.
-
- 16 Jun, 2017 5 commits
-
-
Chris Bracken authored
Eliminates the dependency on idevice_id from libimobiledevice. Instead, uses Xcode built-in functionality.
-
Chris Bracken authored
Moves all remaining calls to tools that are part of the libimobiledevice suite of tools to the IMobileDevice class. This allows for better tracking of this dependency, and easier mocking in tests.
-
Chris Bracken authored
All invocations should go via the IMobileDevice class in mac.dart.
-
Chris Bracken authored
Extract out IMobileDevice class, move class to idevice_id, ideviceinfo (and eventually other libimobiledevice tools such as iproxy) behind this interface. Add tests for the case where libimobiledevice is not installed, the case where it returns no devices, and the case where it returns device IDs.
-
xster authored
-
- 15 Jun, 2017 1 commit
-
-
Chris Bracken authored
-
- 07 Jun, 2017 1 commit
-
-
xster authored
* Before tests * Add the part to trust the cert on the device * flip the error checks since some are more specific and are more actionable * add tests * review
-
- 26 May, 2017 1 commit
-
-
Chris Bracken authored
Relocates two tests alongside other related tests: * moved code_signing_test.dart alongside other lib/src/ios tests * moved terminal_test.dart alongside other lib/src/base tests
-
- 22 May, 2017 2 commits
-
-
Chris Bracken authored
Does not yet migrate hasIdeviceId since that results in a cascade of breaking interface changes that's significant enough for a separate patch.
-
Chris Bracken authored
Ensure that flutter doctor returns a partial installation status when ideviceid is not installed.
-
- 12 May, 2017 1 commit
-
-
Ian Hickson authored
-