- 07 May, 2018 1 commit
-
-
Chris Bracken authored
This change adds support for armv7, arm64, and universal iOS apps. This change eliminates iOS target architecture hardcoding (previously arm64 only) and uses the target architecture(s) specified in Xcode's ARCHS setting ('Architectures' in Xcode Build Settings). For universal binaries, set ARCHS to its default value, $(ARCHS_STANDARD). Note that after changing the architecture in Xcode, developers should run 'pod install' from the ios subdirectory of their project. A separate change (that will land before this one) will add support for automatically detecting project file and Podfile changes and re-running pod install if necessary. This change also adds an --ios-arch option to flutter build aot. In iOS AOT builds (in profile and release mode), this dictates which architectures are built into App.framework. This flag should generally be unnecessary to set manually since flutter build aot is typically only invoked internally by flutter itself.
-
- 04 May, 2018 3 commits
-
-
Todd Volkert authored
The new values are not ready for use yet inside Google
-
Chris Bracken authored
If the developer changes their Xcode build settings and their project has plugins, pod install is required, (e.g. to pick up changes to the target architecture). Similarly, manual edits to the Podfile should trigger a pod install.
-
Yegor authored
* Roll engine to e976be13c51448f89107d082ec81e2b6731671fa * move away from deprecated constants
-
- 01 May, 2018 1 commit
-
-
Chris Bracken authored
iOS debug builds always run in interpreted mode whether on device or on simulator. In both cases, we can skip snapshotting and link against an empty App.framework. Previously, we did this for iOS simulator builds. This does the same for device builds. Previously, debug iOS builds used gen_snapshot to generate a core snapshot, then used 'xxd' to generate C files containing the snapshot data in buffers named kDartVmSnapshotData and kDartIsolateSnapshotData, which are then compiled/linked into App.framework. This is unnecessary since the VM compiled into Flutter.framework already contains this data.
-
- 26 Apr, 2018 4 commits
-
-
Chris Bracken authored
This fixes and re-lands 4bb7496b, which was reverted in ceade39c due to test failures caused by a bad rebase.
-
Todd Volkert authored
This reverts commit 4bb7496b.
-
Chris Bracken authored
Allows for better mockability when tests are added.
-
Chris Bracken authored
Makes for easier mocking, particularly for testing AOT snapshot build.
-
- 25 Apr, 2018 1 commit
-
-
xster authored
-
- 20 Apr, 2018 1 commit
-
-
Yegor authored
Fixes #13655
-
- 12 Apr, 2018 1 commit
-
-
Sarah Zakarias authored
-
- 11 Apr, 2018 2 commits
-
-
Xiao Yu authored
- 04 Apr, 2018 1 commit
-
-
Devon Carew authored
-
- 29 Mar, 2018 2 commits
-
-
Ralph Bergmann authored
add --buildNumber and --buildName to flutter build like flutter build apk --buildNumber=42 --buildName=1.0.42
-
xster authored
* Let iOS auto-signing tool handle Googler scenario * Forgot to update tests
-
- 28 Mar, 2018 1 commit
-
-
Todd Volkert authored
This updates AppContext per the recommendations in #15352 Fixes #15352
-
- 21 Mar, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 19 Mar, 2018 1 commit
-
-
Jonah Williams authored
-
- 17 Mar, 2018 1 commit
-
-
Jonah Williams authored
* fail ios workflow when simctl does not work * missed rename commit * address comments
-
- 14 Mar, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 12 Mar, 2018 1 commit
-
-
Jason Simmons authored
-
- 07 Mar, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 28 Feb, 2018 1 commit
-
-
jcollins-g authored
* Revert "Revert "Add android license verification to doctor and some refactoring" (#14727)" This reverts commit d2602947. * Add tests, fix sdkManagerEnv and use it consistently, and rearrange Status object model * AnsiSpinner needs to leave the cursor where it found it. * fix tests * Const constructor warning only shows up on windows...? * Avoid crash if we can't find the home directory * Make pathVarSeparator return a string in the mock * Implement review comments * Fix out-of-order problem on stop
-
- 17 Feb, 2018 1 commit
-
-
xster authored
-
- 16 Feb, 2018 2 commits
-
-
Mikkel Nygaard Ravn authored
-
Alexandre Ardhuin authored
-
- 15 Feb, 2018 3 commits
-
-
xster authored
* Created plumbing but has stream problem * testing with makePipe * Trying pipe but not really getting anywhere * works by repeatedly reading line * Minor cleanup * works * Clean up pipe after use. * Move the last status forward * Make sure failed script commands bubble up
-
Mikkel Nygaard Ravn authored
This reverts commit b3e4976c.
-
Mikkel Nygaard Ravn authored
-
- 14 Feb, 2018 1 commit
-
-
xster authored
Work around xcodebuild's undocumented freeze when -showBuildSettings is used with -allowProvisioning* (#14684)
-
- 13 Feb, 2018 2 commits
-
-
xster authored
Let Xcode communicate with Apple and create new provisioning profiles and register new devices (#14589)
- 12 Feb, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
Merging to get back to a green tree.
-
- 11 Feb, 2018 1 commit
-
- 09 Feb, 2018 2 commits
-
-
xster authored
* Reduce noise in xcodebuild stdout * Reduce output from cleaning, from non failing xcode outputs and from script * Check xcodebuild clean's exit code * Revert "Reduce noise in xcodebuild stdout" This reverts commit 222a26f55f2a3fc7b115e8a65e55c9be36f241bd.
- 08 Feb, 2018 1 commit
-
-
asiva authored
-
- 06 Feb, 2018 1 commit
-
-
Chris Bracken authored
Previously, the iOS ApplicationPackage subclasses did not mark the bundleID constructor parameter as @required. This is passed up to the ApplicationPackage constructor as the id parameter which is already marked @required and is asserted to be non-null.
-