- 04 Apr, 2018 1 commit
-
-
xster authored
-
- 28 Mar, 2018 1 commit
-
-
Todd Volkert authored
This updates AppContext per the recommendations in #15352 Fixes #15352
-
- 17 Mar, 2018 1 commit
-
-
Jonah Williams authored
* fail ios workflow when simctl does not work * missed rename commit * address comments
-
- 07 Mar, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 19 Feb, 2018 1 commit
-
-
Danny Tuppeny authored
These URLs all automatically redirect HTTP to HTTPS so makes sense to point users at the secure versions.
-
- 19 Oct, 2017 1 commit
-
-
Chris Bracken authored
The libimobiledevice suite of tools do not include version information. A simple way to verify they meet our version requirements is to run idevice_id -l, which will fail when older versions are run against iOS devices with newer versions of iOS installed. Unfortunately, idevice_id -l will also fail when libimobiledevice is up to date, but the attached devices have never been paired with the host machine in Xcode. This patch updates the error message to help guide the user in such situations.
-
- 28 Sep, 2017 1 commit
-
-
Chris Bracken authored
Differentiate between 'not installed' and 'not working' and emit a more targeted message.
-
- 05 Sep, 2017 2 commits
-
-
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).
-
Chris Bracken authored
Opening Xcode is no longer sufficient to enable develop mode in Xcode 9. Update the message to run the command-line tool. Alternatively users can launch an app in the Xcode debugger to do this.
-
- 01 Aug, 2017 1 commit
-
-
Alexey Shamrin authored
-
- 13 Jul, 2017 1 commit
-
-
xster authored
* start * with create * refactor cocoapod code, add tests * fix tests * throw when cocoapod missing * obj-c projects don’t use use_framework!
-
- 29 Jun, 2017 1 commit
-
-
xster authored
-
- 16 Jun, 2017 3 commits
-
-
Chris Bracken authored
All invocations should go via the IMobileDevice class in mac.dart.
-
Chris Bracken authored
Use a top-level getter in mac.dart rather than a static instance getter and a top-level getter in ios_workflow.dart. Makes this code consistent with how we do context lookups elsewhere.
-
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.
-
- 15 Jun, 2017 1 commit
-
-
Chris Bracken authored
Eliminates the need for the device/daemon code to get at the iOS/Android tooling indirectly via Doctor. In tests, we now inject the workflow objects (or mocks) directly.
-
- 02 Jun, 2017 1 commit
-
-
xster authored
* Small setup doc for the app store option * review notes
-
- 31 May, 2017 2 commits
-
-
Chris Bracken authored
Eliminates nearly-duplicate install instructions for libimobiledevice, ideviceinstaller. Since ideviceinstaller depends on libimobiledevice, it's almost certain that if libimobiledevice isn't installed, or needs updating, so does ideviceinstaller.
-
Chris Bracken authored
This message will be emitted both when libimobiledevice requires updating, or when it has not yet been installed. It's also not specifically the version of Xcode that it's incompatible with, it's the lockdownd daemon, which is actually more closely tied to iTunes.
-
- 23 May, 2017 1 commit
-
-
Chris Bracken authored
-
- 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.
-
- 02 May, 2017 1 commit
-
-
xster authored
* Don’t automatically pod setup if the user never did it * fix/add test * rename getters
-
- 01 May, 2017 1 commit
-
-
xster authored
* Add cocoapods reason * s/native/iOS
-
- 26 Apr, 2017 1 commit
-
-
Todd Volkert authored
`adb` can sometimes hang, which will in turn hang the Dart isolate if we're using `Process.runSync()`. This changes many of the `Device` methods to return `Future<T>` in order to allow them to use the async process methods. A future change will add timeouts to the associated calls so that we can properly alert the user to the hung `adb` process. This is work towards #7102, #9567
-
- 09 Apr, 2017 1 commit
-
-
Devon Carew authored
-
- 31 Mar, 2017 1 commit
-
-
Chris Bracken authored
Xcode builds depend on the Python 'six' module. If not present, exit immediately with a useful error message. The six module is included in the system default Python installation. We perform this check in case a custom Python install has higher priority on $PATH; e.g., due to a Homebrew or MacPorts installation. This extracts an existing doctor check to use it during the build step as well.
-
- 29 Mar, 2017 1 commit
-
-
Ian Hickson authored
-
- 27 Mar, 2017 2 commits
-
-
Jakob Andersen authored
-
Jakob Andersen authored
The very first time `pod install` is invoked, CocoaPods downloads the master spec repository, which takes quite a while. Before this change, the build appeared to have stalled. With this change, at least the spinner is moving. Added `pod setup` to the install instructions for CocoaPods, so the spec repo is downloaded while setting up Flutter, instead of during the first build.
-
- 16 Mar, 2017 1 commit
-
-
Jakob Andersen authored
* Only run pod install if CocoaPods v1.0.0 or greater is installed. Avoid issues with older versions of CocoaPods breaking the build. Users who genuinely use older versions of CocoaPods will have to run pod install manually when required.
-
- 10 Mar, 2017 4 commits
-
-
Todd Volkert authored
(follow-on to #8698)
-
Jakob Andersen authored
* Revert "Eliminate CocoaPods install step (#8694)" This reverts commit f4a13bc7. If the developer is relying on CocoaPods and hasn't done a pod install, we will do it for them. This is needed for a smooth native plugin experience, similar to what Gradle is doing on the Android side. There's no hard dependency on CocoaPods. We only run pod install if the project uses CocoaPods, so developers are still free to use alternatives if they prefer (and if they don't want to use native plugins). Fixes #8685 Fixes #8657 Fixes #8526 * Require CocoaPods 1.0.0 or newer. And make sure we don't get a crash if running `pod install` fails. * Address review feedback
-
Chris Bracken authored
This avoids unintentionally installing an older version if the developer's homebrew installation is out-of-date.
-
Chris Bracken authored
If the developer is relying on CocoaPods and hasn't done a pod install, they'll get a build failure indicating the issue. This also avoids a hard dependency on CocoaPods in the tool and allows developers to customize their Xcode steps to use alternatives such as Carthage if they prefer.
-
- 09 Mar, 2017 1 commit
-
-
Chris Bracken authored
As of the latest Xcode versions, the latest published libimobiledevice is out-of-date and build from HEAD is required. This fixes two bugs: 1. Update initial install instructions to add --HEAD flag. 2. Update uninstall, reinstall instructions to include --ignore-dependencies flag, since other brew formulae depend on libimobiledevice.
-
- 08 Mar, 2017 2 commits
-
-
Chris Bracken authored
This is consistent with the rest of the iOS toolchain.
-
Jakob Andersen authored
Since iOS builds are CocoaPods enabled by default, we should make sure to run `pod install` to get pods wired up before building the app. Also added a check to `flutter doctor` to verify CocoaPods is installed. I'm passing FLUTTER_FRAMEWORK_DIR to the `pod install` command, so we can have the app's Podfile link in Flutter.framework as a pod instead of having to copy it over in xcode_backend.sh.
-
- 07 Mar, 2017 1 commit
-
-
John McCutchan authored
* Request the user upgrade if the Android SDK version is 24 * Update android_sdk_test.dart * Update android_sdk.dart
-
- 04 Mar, 2017 1 commit
-
-
Chris Bracken authored
-